我希望我的网页在用户超过我的<textarea>.
<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");
这应该完全符合您的要求 - 您只需要自己找到/创建哔声,这应该是微不足道的。