导航栏: 首页 评论列表

tts SpeechSynthesisUtterance 改变浏览器发音引擎语言种类

默认分类 2018/08/02 08:50

代码如下:

var utterThis = new window.SpeechSynthesisUtterance('123456');
utterThis.lang='en-US'
window.speechSynthesis.speak(utterThis);


>> 留言评论