SpeechRecognitionEvent: resultIndex 属性

SpeechRecognitionEvent 接口的只读属性 resultIndex 返回 SpeechRecognitionResultList "数组" 中实际发生更改的最低索引值结果。

SpeechRecognitionResultList 对象不是数组,但它有一个 getter,允许使用数组语法访问它。

数字。

示例

js
recognition.onresult = (event) => {
  const color = event.results[0][0].transcript;
  diagnostic.textContent = `Result received: ${color}.`;
  bg.style.backgroundColor = color;
  console.log(event.resultIndex); // returns 0 if there is only one result
};

规范

规范
Web 语音 API
# dom-speechrecognitionevent-resultindex

浏览器兼容性

BCD 表仅在浏览器中加载

另请参阅