SpeechSynthesisVoice:default 属性
default
是 SpeechSynthesisVoice
接口的只读属性,它返回一个布尔值,指示该语音是否为当前应用程序的默认语音 (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 的浏览器中加载。