这是
实验性技术
检查
浏览器兼容性表格
要小心谨慎在生产中使用这之前。
error
event of the
Web 语音 API
SpeechSynthesisUtterance
object is fired when an error occurs that prevents the utterance from being succesfully spoken.
| 冒泡 | No |
|---|---|
| 可取消 | No |
| 接口 |
SpeechSynthesisErrorEvent
|
| 事件处理程序特性 |
onerror
|
可以使用
error
event in an
addEventListener
方法:
utterThis.addEventListener('error', function(event) {
console.log('An error has occurred with the speech synthesis: ' + event.error');
});
或使用
onerror
事件处理程序特性:
utterThis.onerror = function(event) {
console.log('An error has occurred with the speech synthesis: ' + event.error');
}
| 规范 | 状态 | 注释 |
|---|---|---|
|
Web 语音 API
The definition of 'speech synthesis utterance events' in that specification. |
草案 |
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
error
event
|
Chrome 33 | Edge 14 | Firefox 49 | IE 不支持 No | Opera 21 | Safari 7 | WebView Android 不支持 No | Chrome Android 33 | Firefox Android 62 | Opera Android 不支持 No | Safari iOS 7 | Samsung Internet Android 3.0 |
完整支持
不支持
实验。期望将来行为有所改变。
用户必须明确启用此特征。