`
soundManager.onload = function() {
// soundManager.createSound() etc. may now be called
soundManager.createSound({
id:'myMp3', url:'audiofiles/my.mp3', onfinish:function()
{
//window.location.href='index.html'
}
});
soundManager.createSound({
id:'yMp3', url:'audiofiles/y.mp3', onfinish:function()
{
//window.location.href='index.html'
}
});
};
`
您好,我创建了两种声音,它们将通过两个不同链接的 onClick 事件播放。当一个声音正在播放时,我点击另一个链接,两个声音同时播放,我想知道当一个新的声音被触发时如何停止播放以前的声音!谢谢