发送html5视频以开始鼠标离开

时间:2016-05-30 09:24:10

标签: jquery html5-video

当鼠标离开时,我想将视频发送回开头,不知道怎么做,我的代码如下,这个播放和暂停很好,但不会将视频发送回开头离开时。

JQuery的

 $(document).on("mouseenter", ".mammo-video", function(e){
      $(this).get(0).play();
 });


 $(document).on("mouseleave", ".mammo-video", function(e){
     $(this).get(0).pause();
 });

谢谢!

1 个答案:

答案 0 :(得分:1)

mouseleave

中使用此功能
$(this).get(0).currentTime=0;
//$(this).get(0).play(); //if you want it to play