JavaScriptECMAScript标准内置对象HTMLMediaElement属性currentTime本页总览currentTime2024年02月23日柏拉文越努力,越幸运 一、认识 HTMLMediaElement.currentTime 属性会以秒为单位返回当前媒体元素的播放时间。设置这个属性会改变媒体元素当前播放位置。 二、语法 const currentTime = video.currentTime;video.currentTime = 35;