SpeechSynthesisUtterance: end 事件
基线 广泛可用
此功能已发展成熟,可在许多设备和浏览器版本上运行。它自 2018 年 9 月.
报告反馈
语法
end
事件在 Web 语音 API SpeechSynthesisUtterance
对象完成朗读时触发。
在诸如
addEventListener()
之类的 方法中使用事件名称,或设置事件处理程序属性。addEventListener("end", (event) => {});
onend = (event) => {};
事件类型
js
事件属性
一个 SpeechSynthesisEvent
。继承自 Event
。
- 除了下面列出的属性之外,父接口
Event
中的属性也可用。 -
charIndex
只读 - 返回触发事件时正在朗读的
SpeechSynthesisUtterance.text
中的字符索引位置。 -
elapsedTime
只读 - 返回触发事件时
SpeechSynthesisUtterance.text
开始朗读后的经过时间(以秒为单位)。 -
name
只读 - 返回与在朗读
SpeechSynthesisUtterance.text
时发生的某些类型事件相关的名称:在mark
事件中,它是到达的 SSML 标记的名称;在boundary
事件中,它是到达的边界类型。 -
utterance
只读
示例
返回触发事件的 SpeechSynthesisUtterance
实例。
在诸如
addEventListener()
之类的 方法中使用事件名称,或设置事件处理程序属性。utterThis.addEventListener("end", (event) => {
console.log(
`Utterance has finished being spoken after ${event.elapsedTime} seconds.`,
);
});
您可以在 addEventListener
方法中使用 end
事件
在诸如
addEventListener()
之类的 方法中使用事件名称,或设置事件处理程序属性。utterThis.onend = (event) => {
console.log(
`Utterance has finished being spoken after ${event.elapsedTime} seconds.`,
);
};
规范
或使用 onend 事件处理程序属性 |
---|
Web 语音 API # 规范 |
Web 语音 API # eventdef-speechsynthesisutterance-end |
浏览器兼容性
dom-speechsynthesisutterance-onend