中央定时器控制
Posted halo-漾
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了中央定时器控制相关的知识,希望对你有一定的参考价值。
var timer = { timerId : 0, timers : [], add : function(fn){ this.timers.push(fn); }, start : function(){ if(this.timerId){ return; } (function runNext(){ if(timer.timers.length > 0){ for(var i = 0; i < timer.timers.length; i++){ if(timer.timers[i]() === false){ timer.timers.splice(i,1); i--; } } timer.timerId = setTimeout(runNext,0); } })(); }, stop : function(){ clearTimeout(this.timerId); this.timerId = 0; } };
以上是关于中央定时器控制的主要内容,如果未能解决你的问题,请参考以下文章