看来popcorn.js CDN已经死了,所以我不会使用它。我想播放html5视频,并在某些时候更新dom元素-除了控制台日志记录外,看不到任何有用的信息。
$('video').on('play', function(e) {
$allVideos.not(this).each(function(item, val) {
val.pause();
});
this.ontimeupdate = function () {
console.log(this.currentTime);
// this doesn't work
if (this.currentTime = 2) {
$('h3').html('hi');
}
}
});