1. 開発者向けのウェブ技術
  2. Web API
  3. SpeechSynthesisErrorEvent

このページはコミュニティーの尽力で英語から翻訳されました。MDN Web Docs コミュニティーについてもっと知り、仲間になるにはこちらから。

View in English Always switch to English

SpeechSynthesisErrorEvent

Baseline 広く利用可能

この機能は広く実装されており、多くのバージョンの端末やブラウザーで動作します。2018年10月以降、すべてのブラウザーで利用可能です。

SpeechSynthesisErrorEventウェブ音声 API のインターフェイスで、発話サービスの SpeechSynthesisUtterance オブジェクトの処理中に発生したエラーに関する情報を保持します。

Event SpeechSynthesisEvent SpeechSynthesisErrorEvent

コンストラクター

SpeechSynthesisErrorEvent()

新しい SpeechSynthesisErrorEvent イベントを生成します。

インスタンスプロパティ

SpeechSynthesisErrorEventSpeechSynthesisEvent インターフェイスから派生しており、親インターフェイスである Event からプロパティを継承しています。

SpeechSynthesisErrorEvent.error 読取専用

音声合成に失敗したことを示すエラーコードを返します。

インスタンスメソッド

SpeechSynthesisErrorEventSpeechSynthesisEvent インターフェイスから派生しており、親インターフェイスである Event からメソッドを継承しています。

js
const synth = window.speechSynthesis;
const inputForm = document.querySelector("form");
const inputTxt = document.querySelector("input");
const voiceSelect = document.querySelector("select");
const voices = synth.getVoices();
// ...
inputForm.onsubmit = (event) => {
 event.preventDefault();
 const utterThis = new SpeechSynthesisUtterance(inputTxt.value);
 const selectedOption =
 voiceSelect.selectedOptions[0].getAttribute("data-name");
 for (let i = 0; i < voices.length; i++) {
 if (voices[i].name === selectedOption) {
 utterThis.voice = voices[i];
 }
 }
 synth.speak(utterThis);
 utterThis.onerror = (event) => {
 console.log(
 `An error has occurred with the speech synthesis: ${event.error}`,
 );
 };
 inputTxt.blur();
};

仕様書

仕様書
Web Speech API
# speechsynthesiserrorevent

ブラウザーの互換性

関連情報

MDN の改良に協力

協力方法を知る

このページは MDN の貢献者によって に最終更新されました。

AltStyle によって変換されたページ (->オリジナル) /