标签:tofixed var console res ntb turn element time return
getvideoprogress();
function getvideoprogress() {
setTimeout(function () {
var vid = document.getElementById("video1");
var currentTime=vid.currentTime.toFixed(1);
if(currentTime==1.2){
//触发
return false;
}
console.log(currentTime);
getvideoprogress();
}, 50);
}
标签:tofixed var console res ntb turn element time return
原文地址:https://www.cnblogs.com/newmiracle/p/11875159.html