美文网首页

作者: 禾苗种树 | 来源:发表于2022-05-11 13:30 被阅读0次

    https://www.runoob.com/tags/ref-eventattributes.html

    //
    $('.show_youlike').on('ended',function(){
          console.log('我播放完了!');
          window.location.replace("http://www.baidu.com");
        })
    
    • video播放
     $(this).children('video')[0].play();
    
    • video暂停/停止
    $(this).children('video')[0].pause();
    $(this).children('video')[0].currentTime = 0;//如果是停止就设置为0 ,暂停时不写该行;
    

    相关文章

      网友评论

          本文标题:

          本文链接:https://www.haomeiwen.com/subject/afbcjrtx.html