最新的Web开发教程
 

Video currentTime Property

<视频对象

设置时间位置为5秒:

document.getElementById("myVideo").currentTime = 5;
试一试»

定义和用法

currentTime属性设置或返回的当前位置(in seconds)的视频播放。

设置此属性时,播放会跳转到指定的位置。


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

currentTime属性所有主流浏览器的支持。

注:在Internet Explorer 8不支持和更早此属性。


句法

返回currentTime属性:

videoObject .currentTime

设置currentTime属性:

videoObject .currentTime= 属性值
描述
seconds 指定视频的播放位置,以秒

技术细节

返回值: 一个数字,代表以秒计的当前回放时间

<视频对象