这是 实验性技术
检查 浏览器兼容性表格 要小心谨慎在生产中使用这之前。

名称 只读特性在 SpeechSynthesisVoice interface returns a human-readable name that represents the voice.

句法

var voiceName = speechSynthesisVoiceInstance.name;
					

A DOMString representing the name of the voice.

范例

for(i = 0; i < voices.length ; i++) {
  var 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
The definition of 'name' in that specification.
草案

浏览器兼容性

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request. 更新 GitHub 上的兼容性数据
桌面 移动
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
名称 Chrome 33 Edge 14 Firefox 49 IE No Opera 21 Safari 7 WebView Android 4.4.3 Chrome Android 33 Firefox Android 62
62
不支持 61 — 62 Disabled
Disabled ). To change preferences in Firefox, visit
Opera Android No Safari iOS 7 Samsung Internet Android 3.0

图例

完整支持

完整支持

不支持

不支持

实验。期望将来行为有所改变。

实验。期望将来行为有所改变。

用户必须明确启用此特征。

用户必须明确启用此特征。

另请参阅

元数据

  • 最后修改: