SpeechSynthesisVoice: default Eigenschaft
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2018.
Die default
-Eigenschaft (nur lesbar) der Schnittstelle SpeechSynthesisVoice
gibt einen booleschen Wert zurück, der angibt, ob die Stimme die Standardstimme für die aktuelle App (true
) ist oder nicht (false
).
Hinweis: Bei einigen Geräten könnte es sich um die Standardstimme für die Sprache der Stimme handeln. Die Spezifikation ist nicht sehr klar, welche es sein sollte, daher können einige Implementierungen abweichen.
Wert
Ein boolescher Wert.
Beispiele
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);
}
Spezifikationen
Specification |
---|
Web Speech API # dom-speechsynthesisvoice-default |
Browser-Kompatibilität
BCD tables only load in the browser