如何在javascript中为消息通知添加蜂鸣声?

添加了示例以显示消息通知.无论何时我们显示它,我们都必须添加哔声.几乎它模仿桌面警报等行为.

谁有解决方案?

解决方法:

这应该有所帮助

<script>
    function PlaySound(soundObj) {
        var sound = document.getElementById(soundObj);
        sound.Play();
    }
</script>

<embed src="success.wav" autostart="false" width="0" height="0" id="sound1" enablejavascript="true">
上一篇:c# – 是什么导致系统发出蜂鸣声?


下一篇:我可以在c#中使用Console.Beep播放mp3文件吗?