SpeechSynthesisEvent: name 属性
基线 广泛可用
此功能已经很成熟,并且可在许多设备和浏览器版本上使用。它自 2018 年 9 月.
报告反馈
值
name
是 SpeechSynthesisUtterance
接口的只读属性,它返回与在 SpeechSynthesisUtterance.text
被朗读时发生的某些类型的事件关联的名称:在 mark
事件中到达的 SSML 标记的名称,或在 boundary
事件中到达的边界类型。
示例
字符串。
utterThis.onboundary = (event) => {
console.log(
`${event.name} boundary reached after ${event.elapsedTime} seconds.`,
);
};
规范
js |
---|
Web 语音 API # 规范 |
浏览器兼容性
dom-speechsynthesisevent-name