语音识别:speechend 事件

当语音识别服务检测到的语音停止被检测到时,Web 语音 APIspeechend 事件就会触发。

语法

在诸如 addEventListener() 之类的 方法中使用事件名称,或设置事件处理程序属性。

js
addEventListener("speechend", (event) => {});

onspeechend = (event) => {};

事件类型

一个通用的 Event,没有添加任何属性。

示例

您可以在 addEventListener 方法中使用 speechend 事件

js
const recognition = new webkitSpeechRecognition() || new SpeechRecognition();

recognition.addEventListener("speechend", () => {
  console.log("Speech has stopped being detected");
});

或使用 onspeechend 事件处理程序属性

js
recognition.onspeechend = () => {
  console.log("Speech has stopped being detected");
};

规范

规范
Web 语音 API
# eventdef-speechrecognition-speechend
Web 语音 API
# dom-speechrecognition-onspeechend

浏览器兼容性

BCD 表格仅在浏览器中加载

另请参见