📜  js tts - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:23.388000             🧑  作者: Mango

代码示例2
// Narrate some text:
var msg = new SpeechSynthesisUtterance('Hello world!');
window.speechSynthesis.speak(msg);

// Cancel the narration:
window.speechSynthesis.cancel();