这是
实验性技术
检查
浏览器兼容性表格
要小心谨慎在生产中使用这之前。
speak()
方法在
SpeechSynthesis
interface adds an
utterance
to the utterance queue; it will be spoken when any other utterances queued before it have been spoken.
speechSynthesisInstance.speak(utterance);
Void.
SpeechSynthesisUtterance
对象。
This snippet is excerpted from our
Speech synthesiser demo
. When a form containing the text we want to speak is submitted, we (amongst other things) create a new utterance containing this text, then speak it by passing it into
speak()
as a parameter.
var synth = window.speechSynthesis;
...
inputForm.onsubmit = function(event) {
event.preventDefault();
var utterThis = new SpeechSynthesisUtterance(inputTxt.value);
var selectedOption = voiceSelect.selectedOptions[0].getAttribute('data-name');
for(i = 0; i < voices.length ; i++) {
if(voices[i].name === selectedOption) {
utterThis.voice = voices[i];
}
}
synth.speak(utterThis);
inputTxt.blur();
}
| 规范 | 状态 | 注释 |
|---|---|---|
|
Web 语音 API
The definition of 'speak()' in that specification. |
草案 |
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
speak
|
Chrome 33 | Edge 14 | Firefox 49 | IE 不支持 No | Opera 21 | Safari 7 | WebView Android 4.4.3 | Chrome Android 33 | Firefox Android 62 | Opera Android 不支持 No | Safari iOS 7 | Samsung Internet Android 3.0 |
完整支持
不支持
实验。期望将来行为有所改变。
用户必须明确启用此特征。
SpeechSynthesis
cancel()
getVoices()
pause()
resume()
speak()