摘要: const speak = (sentence) => { const utterance = new SpeechSynthesisUtterance(sentence); window.speechSynthesis.speak(utterance); }; speak('你好') 阅读全文
posted @ 2022-05-30 09:28 小万子呀 阅读(95) 评论(0) 推荐(0) 编辑