语音输出智能手机(JS)
voice output smartphones(JS)
那么,我已经有语音输出的代码了:
<script type="text/javascript">
var msg = new SpeechSynthesisUtterance('Hello World');
window.speechSynthesis.speak(msg);
</script>
但在我的智能phone 上不起作用!(我已经尝试使用网站 link 并在 phone 上作为 HTML 数据。)
谢谢大家的回答!
如您所见,here SpeechSynthesisUtterance
并非在任何地方都受支持,您显然在 phone 上使用了不支持它的浏览器。
那么,我已经有语音输出的代码了:
<script type="text/javascript">
var msg = new SpeechSynthesisUtterance('Hello World');
window.speechSynthesis.speak(msg);
</script>
但在我的智能phone 上不起作用!(我已经尝试使用网站 link 并在 phone 上作为 HTML 数据。)
谢谢大家的回答!
如您所见,here SpeechSynthesisUtterance
并非在任何地方都受支持,您显然在 phone 上使用了不支持它的浏览器。