currentTime 屬性會以秒為單位返回當(dāng)前媒體元素的播放時間。設(shè)置這個屬性會改變媒體元素當(dāng)前播放位置。
將時間位置設(shè)置為 5 秒:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>HTML 音頻/視頻 currentTime 屬性使用-菜鳥教程(cainiaoplus.com)</title> </head> <body> <button onclick="getCurTime()" type="button">獲得當(dāng)前時間的位置</button> <button onclick="setCurTime()" type="button">將時間位置設(shè)置為 5 秒</button> <br> <video id="video1" controls="controls"> <source src="movie.mp4" type="video/mp4"> <source src="movie.ogg" type="video/ogg"> 您的瀏覽器不支持 HTML5 video 標(biāo)簽。 </video> <script> myVid=document.getElementById("video1"); function getCurTime() { alert(myVid.currentTime); } function setCurTime() { myVid.currentTime=5; } </script> </body> </html>測試看看 ?/?
currentTime屬性設(shè)置或返回音頻/視頻播放的當(dāng)前位置(以秒為單位)。
設(shè)置此屬性時,播放將跳至指定位置。
IEFirefoxOperaChromeSafari
所有主流瀏覽器都支持 currentTime 屬性。
注意:Internet Explorer 8 及之前的版本不支持該屬性。
設(shè)置 currentTime 屬性:
audio|video.currentTime="seconds"
返回 currentTime 屬性:
audio|video.currentTime
值 | 描述 |
---|---|
seconds | 指示音頻/視頻播放的當(dāng)前位置,以秒計。 |
返回值: | 數(shù)字值,表示秒 |
---|