js如何发出嗡嗡声音效

问题遇到的现象和发生背景

想要通过JS发出音效来进行提醒

问题相关代码,请勿粘贴截图
运行结果及报错内容
我的解答思路和尝试过的方法
我想要达到的结果

解决方法

使用SpeechSynthesisUtterance即可

const utterance = new SpeechSynthesisUtterance('Here Here Here Here Here ');
window.speechSynthesis.speak(utterance);

参考链接:https://www.jb51.net/article/210945.htm


如有问题及时沟通