How to clear all setInterval() and setTimeOut() wi

2019-02-20 13:17发布

If I don't know the return value of setInterval() or setTimeOut(), can I still use clearInterveral(id) or clearTimeOut(id) to clear them?

Thanks.

3条回答
萌系小妹纸
2楼-- · 2019-02-20 13:43

You can use a register pattern based object for this.

查看更多
等我变得足够好
3楼-- · 2019-02-20 13:51

As far as I know, this is not possible without the original id, so storing that, maybe in an array would be a good idea

查看更多
Emotional °昔
4楼-- · 2019-02-20 13:58

You can replace original both setTimeout and setInterval like:

   setInterval = (function( oldsetInterval){
    var registered=[],
    f = function(a,b){
        return registered[ registered.length ] = oldsetInterval(a,b)
    };
     f.clearAll = function(){
        var r;
        while( r = registered.pop()) { 
           clearInterval( r );
        }       
    };
    return f;    
})(window.setInterval);

And now:

setInterval( function(){alert(5000)}, 5000 );
setInterval( function(){alert(10000)}, 10000 );

setInterval.clearAll();

Suggesting a commentary from @PointedEars you shouldn't use the same name so:

reportingSetInterval = as above;
reportingSetInterval( function(){alert(5000)}, 5000 ); 

and so on..

查看更多
登录 后发表回答