欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Javascript Throttle & Debounce應(yīng)用介紹

 更新時(shí)間:2013年03月19日 10:14:10   作者:  
Throttle:無(wú)視一定時(shí)間內(nèi)所有的調(diào)用Debounce:一定間隔內(nèi)沒(méi)有調(diào)用時(shí),接下來(lái)將為大家介紹下Throttle & Debounce的應(yīng)用,感興趣的朋友可以參考下哈
Throttle
無(wú)視一定時(shí)間內(nèi)所有的調(diào)用,適合在發(fā)生頻度比較高的,處理比較重的時(shí)候使用。
復(fù)制代碼 代碼如下:

var throttle = function (func, threshold, alt) {
var last = Date.now();
threshold = threshold || 100;
return function () {
var now = Date.now();
if (now - last < threshold) {
if (alt) {
alt.apply(this, arguments);
}
return;
}
last = now;
func.apply(this, arguments);
};
};

Debounce
一定間隔內(nèi)沒(méi)有調(diào)用時(shí),才開(kāi)始執(zhí)行被調(diào)用方法。
復(fù)制代碼 代碼如下:

var debounce = function (func, threshold, execASAP) {
var timeout = null;
threshold = threshold || 100;
return function () {
var self = this;
var args = arguments;
var delayed = function () {
if (!execASAP) {
func.apply(self, args);
}
timeout = null;
};
if (timeout) {
clearTimeout(timeout);
} else if (execASAP) {
func.apply(self, args);
}
timeout = setTimeout(delayed, threshold);
};
};

Test
復(fù)制代碼 代碼如下:

var test = function (wrapper, threshold) {
var log = function () {
console.log(Date.now() - start);
};
var wrapperedFunc = wrapper(log, threshold);
var start = Date.now();
var arr = [];
for (var i = 0; i < 10; i++) {
arr.push(wrapperedFunc);
}
while(i > 0) {
var random = Math.random() * 1000;
console.log('index: ' + i);
console.log('random: ' + random);
setTimeout(arr[--i], random);
}
};
test(debounce, 1000);
test(throttle, 1000);

相關(guān)文章

最新評(píng)論