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

View in English Always switch to English

SpeechSynthesisEvent: name プロパティ

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2018年9月⁩.

nameSpeechSynthesisUtterance インターフェイスの読み取り専用プロパティで、 SpeechSynthesisUtterance.text が話されているときに発生する、特定の種類のイベントに関連付けられた名前を返します。 mark イベントの場合は、到達した SSML マーカーの名前、 boundary イベントの場合は到達した境界の種類です。

文字列です。

js
utterThis.onboundary = (event) => {
  console.log(
    `${event.name} boundary reached after ${event.elapsedTime} seconds.`,
  );
};

仕様書

Specification
Web Speech API
# dom-speechsynthesisevent-name

ブラウザーの互換性

関連情報