gpt4 book ai didi

javascript - 在 html5 音频元素上使用 jquery 绑定(bind) 'timeupdate'

转载 作者:搜寻专家 更新时间:2023-10-31 22:45:44 25 4
gpt4 key购买 nike

我只是想按时间更新一个简单的进度条,所以我这样做:

var audioFile = thisPlayerBtn.attr('audioFile');
var audioFilePlayer = document.createElement('audio');
audioFilePlayer.setAttribute('src', audioFile);
audioFilePlayer.setAttribute('id', 'theAudioPlayer');
audioFilePlayer.load();

$.get();

audioFilePlayer.addEventListener("load", function() {
audioFilePlayer.play();
}, true);

$('#hiddenAudioElements').append(audioFilePlayer);
audioFilePlayer.play();
audioFilePlayer.bind('timeupdate', updateTime);


var updateTime = function(){
var thisPlayer = $(this);
var widthOfProgressBar = Math.floor( (100 / thisPlayer.duration) * thisPlayer.currentTime);
$('#songIdForPorgessBar').css({
'width':widthOfProgressBar+'%'
});
}

Firebug 说“bind”不是一个函数,所以我用“addEventListener”交换了它,我没有收到任何错误,但进度条没有更新。

不确定我做错了什么,或者是否有更好的解决方法。这是我的 fiddle :http://jsfiddle.net/j44Qu/它可以工作,播放音频,只是不更新​​进度条,我很困惑。

最佳答案

你的问题是你在应该使用 dom 节点时使用了 jQuery 对象,反之亦然。
bind 是一个 jQuery 方法,但您在音频节点上调用它

$(audioFilePlayer).bind('timeupdate', updateTime);

durationcurrentTime 是音频节点属性,但您尝试从 jQuery 对象引用它们

var widthOfProgressBar = Math.floor( (100 / this.duration) * this.currentTime);

http://jsfiddle.net/j44Qu/1/

关于javascript - 在 html5 音频元素上使用 jquery 绑定(bind) 'timeupdate',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19739384/

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