我使用的是videoJS,但我没有让时间更新活动有效。
这是我定义视频的方式:
我测试了谷歌和这里的几个解决方案,但似乎没有任何效果,如下所示:
<script>
$('#testvid').on('timeupdate', function(){
console.log('the time was updated to: ' + this.currentTime);
});
videojs('testvid').ready(function(){
var myPlayer = this;
});
</script>
答案 0 :(得分:1)
使用video.js API并在就绪功能中设置事件监听器。
videojs('testvid').ready(function(){
var myPlayer = this;
myPlayer.on('timeupdate', function(){
console.log('the time was updated to: ' + myPlayer.currentTime());
});
});