https://www.runoob.com/tags/ref-eventattributes.html
- 监听视频结束事件
https://blog.csdn.net/qq_32963841/article/details/74942014 - video事件和属性总结
https://www.cnblogs.com/rogerwu/p/10072119.html - video视频播放完成事件
方法:ended
原理:在jq中使用该方法需要使用委托事件
委托事件方式调取:`jq对象.on('事件名称',function(){你执行的事情})
例子:视频播放结束跳转到相应页面
//
$('.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 ,暂停时不写该行;
网友评论