gpt4 book ai didi

javascript - 使用SoundManager2时onfinish会提前触发

转载 作者:行者123 更新时间:2023-12-03 00:54:20 27 4
gpt4 key购买 nike

我尝试使用onfinished在SoundManager2中的声音播放完毕时触发一个函数。我的代码如下:

function createSound(id, path) {
mySound = soundManager.createSound({
id: id,
url: path,
volume: 100,
onfinish: playNextSound(id),
(...)
},
});
return mySound;
}

function playNextSound(id) {
(...)
alert("Done!");
}

但是,发生的事情是,每当我单击播放时,该函数就会触发(并显示警报),这显然不应该发生。我也尝试过把infinish放在play()函数中,但无济于事。

任何想法可能有什么问题吗?

最佳答案

因为您正在执行playNextSound函数并将其返回值分配给onfinish

您应该这样做:

onfinish: playNextSound,

关于javascript - 使用SoundManager2时onfinish会提前触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16447154/

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