gpt4 book ai didi

javascript - 如何让 JavaScript 触发声音文件?

转载 作者:行者123 更新时间:2023-11-28 08:40:44 24 4
gpt4 key购买 nike

我把这个 javascript 放在 head 标签中:

<script language="javascript" type="text/javascript">
function playSound(soundfile) {
document.getElementById("dummy").innerHTML=
"<embed src=\""+soundfile+"\" hidden=\"true\" autostart=\"true\" loop=\"false\" />";
}
</script>

我将以下代码放在页面中间的 div 中:

<span id="dummy"></span>
<a href="javascript: void(0);" onclick="playSound('singing-bowl.wav');"><img id="bowl"
src="pics/singing-bowl.gif" height="119" width="157" /></a>

它不工作。我不太了解 javascript,但这应该可以从我复制它的源中实现。我已经尝试过使用 mp3 版本和 wav 版本。两者都不适合我。

有什么线索吗?

最佳答案

你可以试试这个

function playSound(val)
{
var sound = new Audio(val);
sound.addEventListener('canplaythrough', function() {
// your call back function
// for example to play the sound
sound.play();
}, false);
}

提高效率

var sound =null;
var isReady = false;
window.onload = function()
{
sound = new Audio('singing-bowl.wav');
sound.addEventListener('canplaythrough', function() {
isReady = true;
}, false);

}
function playSound()
{
if(isReady)
sound.play();
}

关于javascript - 如何让 JavaScript 触发声音文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20502582/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com