HTML 音频/视频 DOM currentTime 属性
将时间位置设置为 5 秒:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <button onclick="getCurTime()" type="button">获得当前时间的位置</button> <button onclick="setCurTime()" type="button">将时间位置设置为 5 秒</button> <br> <video id="video1" controls="controls"> <source src="/examples/mov_bbb.mp4" type="video/mp4"> <source src="/examples/mov_bbb.ogg" type="video/ogg"> 您的浏览器不支持 HTML5 video 标签。 </video> <script> myVid = document.getElementById("video1"); function getCurTime() { alert(myVid.currentTime); } function setCurTime() { myVid.currentTime = 5; } </script> <p>Video courtesy of <a href="http://www.bigbuckbunny.org/" target="_blank">Big Buck Bunny</a>.</p> </body> </html>
定义和用法
currentTime 属性设置或返回音频/视频播放的当前位置(以秒计)。
当设置该属性时,播放会跳跃到指定的位置。
浏览器支持
所有主流浏览器都支持 currentTime 属性。
注意:Internet Explorer 8 及之前的版本不支持该属性。
语法
设置 currentTime 属性:
audio | video.currentTime = "seconds"
返回 currentTime 属性:
audio|video.currentTime
属性值
值 | 描述 |
---|---|
seconds | 指示音频/视频播放的当前位置,以秒计。 |
技术细节
返回值: | 数字值,表示秒 |
---|
HTML 音频/视频 DOM 参考手册