SpeechRecognition: end イベント
end
はウェブ音声 API の
SpeechRecognition
オブジェクトのイベントで、音声認識サービスが切断された時に発生します。
構文
このイベント名を addEventListener()
などのメソッドで使用するか、イベントハンドラープロパティを設定するかしてください。
addEventListener('end', (event) => { })
onend = (event) => { }
イベント型
一般的な Event
であり、追加のプロパティはありません。
例
end
イベントは、 addEventListener
メソッドで使用することができます。
const recognition = new webkitSpeechRecognition() || new SpeechRecognition();
recognition.addEventListener('end', () => {
console.log('音声認識サービスを切断しました。');
});
または onend
イベントハンドラープロパティを使用してください。
recognition.onend = () => {
console.log('音声認識サービスを切断しました。');
}
仕様書
Specification |
---|
Web Speech API # eventdef-speechrecognition-end |
Web Speech API # dom-speechrecognition-onend |
ブラウザーの互換性
BCD tables only load in the browser