gpt4 book ai didi

jquery - HTML5 : currentTime property

转载 作者:太空宇宙 更新时间:2023-11-04 13:21:02 24 4
gpt4 key购买 nike

我在音频 html5 中使用 currentTime 时遇到问题。它在控制台中给我一个错误

InvalidStateError: An attempt was made to use an object that is not, or is no longer, usable

还有一个警告:

HTTP "Content-Type" of "audio/mpeg" is not supported. Load of media resource http://s3.amazonaws.com/audiojs/02-juicy-r.mp3 failed.

但是当我去掉这行代码时,我没有收到任何控制台错误和警告。

$(".play").click(function(){    var mediaElement = document.getElementById('mediaElementID');    mediaElement.currentTime = 29;});

我目前正在使用 audio.js .我对我的代码进行了不同的修改,但仍然无法正常工作。这是我的 javascript 代码:

audiojs.events.ready(function() {   audiojs.createAll();   $(".play").click(function(){    var myAudio = document.getElementById('myAudio');    myAudio.currentTime = 29;   });});

最佳答案

当 mp3 文件加载失败时,我得到这个错误。例如,它在 Firefox 中失败,因为它不支持 mp3。它似乎适用于 Chrome。尝试为不同的浏览器放置不同的文件格式。

关于jquery - HTML5 : currentTime property,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17567545/

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