跳到主要内容

currentTime

2024年02月23日
柏拉文
越努力,越幸运

一、认识


HTMLMediaElement.currentTime 属性会以秒为单位返回当前媒体元素的播放时间。设置这个属性会改变媒体元素当前播放位置。

二、语法


const currentTime = video.currentTime;
video.currentTime = 35;