SpeechSynthesisVoice:name 属性
name
是 SpeechSynthesisVoice
接口的只读属性,它返回一个表示语音的人类可读名称。
值
表示语音名称的字符串。
示例
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 的浏览器中加载。