1
function TimerSystem() {
this.timer = null;
this.addTimer = function(timer, delay) {
this.timer = timer;
setTimeout(function() {
timerSystem.timer = null;
}, delay);
};
}
var timerSystem = new TimerSystem();
timerSystem.addTimer(setTimeout(function() {
//do something...
}, 1000), 1000);
它在我的源代碼中工作。 讓我知道這種方式是對的? 我想,這是不是智能javascript check setTimeout正在運行
我想在定時器運行時阻止用戶輸入。 謝謝! :) – user2135500