SpeechSynthesisVoice:name 属性

基线 广泛可用

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

nameSpeechSynthesisVoice 接口的只读属性,它返回一个表示语音的人类可读名称。

表示语音名称的字符串。

示例

js
for (const voice of voices) {
  const option = document.createElement("option");
  option.textContent = `${voice.name} (${voice.lang})`;

  if (voice.default) {
    option.textContent += " — DEFAULT";
  }

  option.setAttribute("data-lang", voice.lang);
  option.setAttribute("data-name", voice.name);
  voiceSelect.appendChild(option);
}

规范

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

浏览器兼容性

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

另请参阅