如何在视频结束时重定向页面?

时间:2015-07-02 22:57:39

标签: jquery html

我有一个带有视频介绍的html网页。我希望在视频结束后10秒将其重定向到另一个网页。我主要使用jQuery和HTML。

1 个答案:

答案 0 :(得分:0)

这肯定有用。我刚才尝试过。

<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.2.min.js">
</script>
<script type="text/javascript">
  $(document).ready(function(){   
   $("#myVideo").bind('ended', function(){
      location.href="http://www.localhost.com";   
   }); 
  });
</script>

<video id="myVideo" width="320" height="240" controls="controls">
  <source src="movie.mp4" type="video/mp4" />
  <source src="movie.ogg" type="video/ogg" />
    Your browser does not support the video tag.
</video>