开发者

Problem while playing video in jsp - How to redirect to another page after playing the video?

开发者 https://www.devze.com 2023-03-15 01:36 出处:网络
I am playing a mpeg video file in jsp. After the video is played, i want to redirect the user to another page. But, am getting redirected to the other page before the video is completed.

I am playing a mpeg video file in jsp. After the video is played, i want to redirect the user to another page. But, am getting redirected to the other page before the video is completed.

<embed src="http://localhost:1000/myapp/media/DELTA.MPG" />

<script type="text/javascript">
window.location = "http://www.yahoo.com";
</script>

Is开发者_JAVA技巧 it possible to specify any attribute in the 'embed' tag to tell the browser that the user should be redirected ONLY after the play is over?


Assuming that the video is played without any pauses or delays, you can write a javascript function which would start a timer to redirect the user to a new page.

The duration of the video should be passed to that function when the page is loaded.

0

精彩评论

暂无评论...
验证码 换一张
取 消