如何使JavaScript发出哔哔声?

我希望每当用户超过的最大字符限制时,我的网页都会发出蜂鸣声<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");

这应该完全满足您的要求-您只需要自己查找/创建蜂鸣声,这应该是微不足道的。

以上是 如何使JavaScript发出哔哔声? 的全部内容, 来源链接: utcz.com/qa/424181.html

回到顶部