xxxxxxxxxx
<html>
<body>
<p>该实例演示了如何使用 addEventListener() 方法向 video 元素添加 "onseeking" 事件。</p>
<p>视频移动到新的播放位置。</p>
<video controls id="myVideo">
<source src="/statics/demosource/mov_bbb.mp4" type="video/mp4">
<source src="/statics/demosource/mov_bbb.ogg" type="video/ogg">
您的浏览器不支持 HTML5 video。
</video>
<script>
document.getElementById("myVideo").addEventListener("seeking", myFunction);
function myFunction() {
alert("寻址操作完成!");
}
</script>
</body>
</html>