我首先定义了音频播放的开始时间和以秒为单位的结束时间
var a = document.getElementById("audioplayer");
a.addEventListener("progress", function () {
if ($("#audioplayer")[0].currentTime > Math.round(Number(globalStart) + Number(globalDuration))) {
$("#audioplayer")[0].pause();
}
}, true);
我希望在当前时间达到x秒时停止播放音频
我该怎么做?
答案 0 :(得分:2)
您必须在 timeupdate
上添加事件监听器a.addEventListener('timeupdate', function () {
if (this.currentTime > Math.round(Number(globalStart) + Number(globalDuration)) && !this.paused) {
this.pause();
}
});