SpeechSynthesisVoice:default 属性

基线 广泛可用

此功能已得到很好的建立,并且可以在许多设备和浏览器版本中使用。它自以下时间起在浏览器中可用 2018 年 9 月.

defaultSpeechSynthesisVoice 接口的只读属性,它返回一个布尔值,指示该语音是否为当前应用程序的默认语音 (true),或不是 (false)。

注意:对于某些设备,它可能是语音语言的默认语音。规范没有明确说明应该是什么,因此某些实现可能有所不同。

布尔值。

示例

js
for (let i = 0; i < voices.length; i++) {
  const option = document.createElement("option");
  option.textContent = `${voices[i].name} (${voices[i].lang})`;

  if (voices[i].default) {
    option.textContent += " — DEFAULT";
  }

  option.setAttribute("data-lang", voices[i].lang);
  option.setAttribute("data-name", voices[i].name);
  voiceSelect.appendChild(option);
}

规范

规范
Web 语音 API
# dom-speechsynthesisvoice-default

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。

另请参阅