📜  stackoverflow 叙述文本 js - Javascript 代码示例

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

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

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