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

时间:2012-10-26 11:01:02

标签: javascript jquery asp.net notifications beep

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

任何人都可以有解决方案吗?

1 个答案:

答案 0 :(得分:4)

这应该有帮助

<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">