代码编辑器:
x
1
<p>视频播放及暂停。</p>
2
3
<video id="myVideo" width="320" height="176" controls>
4
<source src="/static/i/html/html_video_1.mp4" type="video/mp4">
5
<source src="/static/i/html/html_video_1.ogg" type="video/ogg">
6
您的浏览器不支持 HTML5 video 标签。
7
</video>
8
9
<script>
10
var vid = document.getElementById("myVideo");
11
vid.onpause = function()
12
{
13
alert("视频暂停播放");
14
};
15
</script>
16
17
<footer>简单教程,简单编程<br/>Copyright © 简单教程 www.twle.cn</footer>
18