javascript:清除所有超时?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript:清除所有超时?相关的知识,希望对你有一定的参考价值。
有没有办法清除特定窗口的所有时间?我想超时存储在window
对象的某处,但无法确认。
欢迎任何跨浏览器解决方案。
它们不在window对象中,但它们有id,其中(afaik)是连续的整数。
所以你可以清除所有超时:
var id = window.setTimeout(function() {}, 0);
while (id--) {
window.clearTimeout(id); // will do nothing if no timeout with id is present
}
我使用Vue和Typescript。
private setTimeoutN;
private setTimeoutS = [];
public myTimeoutStart() {
this.myTimeoutStop();//stop All my timeouts
this.setTimeoutN = window.setTimeout( () => {
console.log('setTimeout');
}, 2000);
this.setTimeoutS.push(this.setTimeoutN)//add THIS timeout ID in array
}
public myTimeoutStop() {
if( this.setTimeoutS.length > 0 ) {
for (let id in this.setTimeoutS) {
console.log(this.setTimeoutS[id]);
clearTimeout(this.setTimeoutS[id]);
}
this.setTimeoutS = [];//clear IDs array
}
}
我认为实现这一目标的最简单方法是将所有setTimeout
标识符存储在一个数组中,您可以轻松地在所有数组中迭代到clearTimeout()
。
var timeouts = [];
timeouts.push(setTimeout(function(){alert(1);}, 200));
timeouts.push(setTimeout(function(){alert(2);}, 300));
timeouts.push(setTimeout(function(){alert(3);}, 400));
for (var i=0; i<timeouts.length; i++) {
clearTimeout(timeouts[i]);
}
我有一个Pumbaa80's answer的补充,可能对开发旧IE的人有用。
是的,所有主流浏览器都将超时ID实现为连续整数(即not required by specification)。通过起始编号从浏览器到浏览器不同。似乎Opera,Safari,Chrome和IE> 8从1启动超时ID,从2启动基于Gecko的浏览器,从一些随机数启动IE <= 8,这些随机数在选项卡刷新时神奇地保存。你可以discover it yourself。
所有这些都表明,在IE <= 8中,while (lastTimeoutId--)
周期可能会超过8个数字,并显示“此页面上的脚本导致Internet Explorer运行缓慢”消息。因此,如果您不能save all you timeout id's或不想override window.setTimeout,您可以考虑在页面上保存第一个超时ID并清除超时直到它。
在早期页面加载时执行代码:
var clearAllTimeouts = (function () {
var noop = function () {},
firstId = window.setTimeout(noop, 0);
return function () {
var lastId = window.setTimeout(noop, 0);
console.log('Removing', lastId - firstId, 'timeout handlers');
while (firstId != lastId)
window.clearTimeout(++firstId);
};
});
然后清除所有可能由外部代码设置的挂起超时,这是您想要的多次
如何将超时ID存储在全局数组中,并定义一个方法来将函数调用委托给窗口。
GLOBAL={
timeouts : [],//global timeout id arrays
setTimeout : function(code,number){
this.timeouts.push(setTimeout(code,number));
},
clearAllTimeout :function(){
for (var i=0; i<this.timeouts.length; i++) {
window.clearTimeout(this.timeouts[i]); // clear all the timeouts
}
this.timeouts= [];//empty the id array
}
};
在不更改任何现有代码的情况下,您可以将以下代码放在其他任何内容之前,它将为原始setTimeout
和clearTimeout
创建一个包装函数,并添加一个新的clearTimeouts
,它将清除所有超时(Gist link)
// isolated layer wrapper (for the local variables)
(function(_W){
var cache = [], // will store all timeouts IDs
_set = _W.setTimeout, // save original reference
_clear = _W.clearTimeout; // save original reference
// Wrap original setTimeout with a function
_W.setTimeout = function( CB, duration ){
// also, wrap the callback, so the cache referece will be removed
// when the timerout has reached (fired the callback)
var id = _set(function(){
CB();
removeCacheItem(id);
}, duration || 0);
cache.push( id ); // store reference in the cache array
// id must be returned to the user could save it and clear it if they choose to
return id ;
}
// Wrap original clearTimeout with a function
_W.clearTimeout = function( id ){
_clear(id);
removeCacheItem(id);
}
// Add a custom function named "clearTimeouts" to the "window" object
_W.clearTimeouts = function(){
cache.forEach(n => _clear(n))
cache.length = [];
}
// removes a specific id from the cache array
function removeCacheItem( id ){
var idx = cache.indexOf(id);
if( idx > -1 )
cache = cache.filter(n => n != id )
}
})(window);
您必须重写window.setTimeout
方法并保存其超时ID。
const timeouts = [];
const originalTimeoutFn = window.setTimeout;
window.setTimeout = function(fun, delay) { //this is over-writing the original method
const t = originalTimeoutFn(fn, delay);
timeouts.push(t);
}
function clearTimeouts(){
while(timeouts.length){
clearTimeout(timeouts.pop();
}
}
使用全局超时,所有其他函数都从中获取时序。这将使一切运行得更快,更易于管理,尽管它会为您的代码添加一些抽象。
我们刚刚发布了解决这个问题的软件包。
npm install time-events-manager
有了它,您可以通过timeoutCollection
和intervalCollection
对象查看所有超时和间隔。还有一个removeAll
函数,可以清除集合和浏览器中的所有超时/间隔。
为了完整起见,我想发布涵盖setTimeout
和setInterval
的通用解决方案。
似乎浏览器可能同时使用相同的ID池,但是从Are clearTimeout and clearInterval the same?的一些答案来看,目前尚不清楚依赖clearTimeout
和clearInterval
执行相同功能或仅处理各自的计时器类型是否安全。
因此,当目标是杀死所有超时和间隔时,这是一个实现,当无法测试所有超时时,可能会在实现中稍微更具防御性:
function clearAll(windowObject) {
var id = Math.max(
windowObject.setInterval(noop, 1000),
windowObject.setTimeout(noop, 1000)
);
while (id--) {
windowObject.clearTimeout(id);
windowObject.clearInterval(id);
}
function noop(){}
}
您可以使用它清除当前窗口中的所有计时器:
clearAll(window);
或者你可以用它来清除iframe
中的所有计时器:
clearAll(document.querySelector("iframe").contentWindow);
以上是关于javascript:清除所有超时?的主要内容,如果未能解决你的问题,请参考以下文章