当用户超过我的< textarea>的最大字符数限制时,我希望我的网页发出蜂鸣声.
解决方法:
它不可能直接在JavaScript中完成.您需要在HTML中嵌入一个简短的WAV文件,然后通过代码播放.
一个例子:
<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">
然后,您可以从JavaScript代码中调用它:
PlaySound("sound1");
这应该完全符合您的要求 – 您只需要自己查找/创建哔声,这应该是微不足道的.