html5视频更新基于时间的dom元素

时间:2019-02-20 20:41:19

标签: javascript html5-video

看来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');
     }
    }
 });

0 个答案:

没有答案