<!DOCTYPE html>
<html>
<body>
<video id="myVideo" width="320" height="240" controls>
<source src="/statics/demosource/movie.mp4" type="video/mp4">
<source src="/statics/demosource/movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video><br>
<button onclick="setCurTime()" type="button">设置播放位置为 5 秒</button>
<p id="demo"></p>
<script>
var vid = document.getElementById("myVideo");
vid.addEventListener("timeupdate", getCurTime);
function getCurTime() {
document.getElementById("demo").innerHTML = "当前播放位置为 " + vid.currentTime + " 秒。";
}
function setCurTime() {
vid.currentTime = 5;
}
</script>
</body>
</html>