最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Javascript Throttle & Debounce應用介紹

 更新時間:2013年03月19日 10:14:10   作者:  
Throttle:無視一定時間內所有的調用Debounce:一定間隔內沒有調用時,接下來將為大家介紹下Throttle & Debounce的應用,感興趣的朋友可以參考下哈
Throttle
無視一定時間內所有的調用,適合在發(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
一定間隔內沒有調用時,才開始執(zhí)行被調用方法。
復制代碼 代碼如下:

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
復制代碼 代碼如下:

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);

相關文章

最新評論

文水县| 忻州市| 盘锦市| 铜梁县| 玛沁县| 山西省| 剑川县| 布尔津县| 嘉荫县| 上饶县| 镇江市| 永仁县| 闸北区| 连州市| 娱乐| 钟祥市| 临城县| 公安县| 明星| 霍山县| 安阳县| 天柱县| 都匀市| 永兴县| 永新县| 花垣县| 宁乡县| 温宿县| 策勒县| 贵德县| 拉孜县| 中西区| 五常市| 新田县| 方山县| 纳雍县| 乾安县| 咸阳市| 东乌| 崇阳县| 紫云|