Audio currentTime 属性
定义和用法
currentTime 属性设置或返回音频播放的当前位置(以秒为单位)。
设置该属性时,播放会跳转到指定位置。
浏览器支持
属性 | |||||
---|---|---|---|---|---|
currentTime | Yes | Yes | Yes | Yes | Yes |
语法
返回 currentTime 属性:
audioObject.currentTime
设置 currentTime 属性:
audioObject.currentTime = seconds
属性值
值 | 描述 |
---|---|
seconds | 指定音频播放的位置,以秒为单位 |
技术细节
返回值: | 一个数字, 以秒为单位表示当前播放时间 |
---|
❮ Audio 对象