test 发表于 2022-10-28 16:12:49

windows原生语音播报方法

<script>
    var utterThis = new window.SpeechSynthesisUtterance('指尖互联,windows原生语音播报方法');
    utterThis.pitch=1
    utterThis.rate=0.6
    utterThis.voiceURI='BaiduMandarinMale'
    window.speechSynthesis.speak(utterThis);
</script>
页: [1]
查看完整版本: windows原生语音播报方法