gpt4 book ai didi

javascript audio currentTime 使某些浏览器崩溃

转载 作者:行者123 更新时间:2023-12-03 02:03:51 25 4
gpt4 key购买 nike

我在我的应用程序中播放的音频有问题。我有 HTML 音频:

    <audio id="correct-sound">
<source src="sounds/catch.mp3" type="audio/mpeg">
</audio>

然后在我的游戏中我有这样的代码
    jQuery('#correct-sound').get(0).currentTime = 0;
jQuery('#correct-sound').get(0).play();

但对于某些浏览器,它会使所有脚本崩溃。我已经包含了旧的 Firefox try, catch,但它对其他一些其他设备没有帮助(在 Firefox 中它有帮助)
try{
jQuery('#correct-sound').get(0).currentTime = 0;
jQuery('#correct-sound').get(0).play();
}catch(err){
console.log(err);
}

问题是我无法复制该错误,但是当我为某些浏览器删除该代码时,此崩溃已被删除。因此,如果发生崩溃,我只需要某种方式,这样他们就可以跳过这部分并继续前进,例如 try catch。有任何想法吗?

最佳答案

认为这应该有效:

if (typeof jQuery('#correct-sound').get(0).currentTime !== 'undefined') {
jQuery('#correct-sound').get(0).currentTime = 0;
}

关于javascript audio currentTime 使某些浏览器崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29132059/

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