實例
將時間位置設定為5 秒:
myVid=document.getElementById("video1"); myVid.currentTime=5;
定義與用法
currentTime 屬性設定或傳回音訊/影片播放的目前位置(以秒計)。
當設定該屬性時,播放會跳躍到指定的位置。
瀏覽器支援
所有主流瀏覽器都支援 currentTime 屬性。
註解:Internet Explorer 8 或更早的瀏覽器不支援此屬性。
語法
設定currentTime 屬性:
audio|video.currentTime="seconds"
傳回currentTime 屬性:
audio|video.currentTime
屬性值
值 | 描述 |
seconds | 指示音訊/視訊播放的目前位置(以秒計)。 |
技術細節
#傳回值 | 數字值,表示秒 |
#實例
將時間位置設定為5 秒:
<!DOCTYPE html> <html> <body> <p> <button onclick="getCurTime()" type="button">获得当前时间的位置</button> <button onclick="setCurTime()" type="button">把时间位置设置为 5 秒</button> </p> <video id="video1" controls="controls"> <source src="/kf51/demo/mov_bbb.mp4" type="video/mp4"> <source src="/kf51/demo/mov_bbb.ogg" type="video/ogg"> 您的浏览器不支持 video 标签。 </video> <script> var myVid = document.getElementById("video1"); function getCurTime() { alert(myVid.currentTime); } function setCurTime() { myVid.currentTime = 5; } </script> </body> </html>
以上是H5設定或傳回音訊/視訊播放的目前位置(以秒計)的屬性currentTime的詳細內容。更多資訊請關注PHP中文網其他相關文章!