HTML 参考手册
HTML Audio/Video DOM timeupdate 事件
使用 currentTime 属性设置播放位置为 5 秒
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>蜜蜂教程(mifengjc.com)</title> </head> <body> <video id="myVideo" width="320" height="240" controls> <source src="/examples/movie.mp4" type="video/mp4"> <source src="/examples/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> // 获取 id="myVideo" 的 video 元 var vid = document.getElementById("myVideo"); // 为 video 添加 "timeupdate" 事件 vid.addEventListener("timeupdate", getCurTime); // 显示 id="demo" 的 p 元素中视频的播放位置 function getCurTime() { document.getElementById("demo").innerHTML = "当前播放位置为 " + vid.currentTime + " 秒。"; } // 设置播放位置为 5 秒 function setCurTime() { vid.currentTime = 5; } </script> </body> </html>
运行结果:
点击运行 »