1. 簡樸的防抖動處置懲罰,一秒內點擊一次
var timer = null;
$('.coupon').click(function(){
if (timer) {
return;
}
timer = true;
setTimeout(function() {
timer = false;
}, 1000);
...
})
2. 向服務器要求數據
點擊按鈕向背景要求數據 優化點:
var running = false;
$('.btn').on('click', function() {
if (running) {
return;
}
running = true;
$.ajax(url, {
complete: () => {
running = false;
}
})
});
別的一些防抖動的小技能,請參考:
http://blog.csdn.net/crystal6…;
https://jinlong.github.io/201…
3. 封裝好的簡樸防抖動函數
// 防抖動函數 fn要實行的函數,timeout距離毫秒數
function debounce(fn, timeout) {
let last = null;
return function() {
if (last) {
return last.result;
}
setTimeout(() => { last = null; }, timeout || 1000);
const result = fn.apply(this, arguments);
last = { result };
return result;
};
}
//挪用
btn.addEventListener('click', debounce(function() {
...
}, 1000));
4. 現成的東西庫Loadash
http://www.css88.com/doc/loda…
防抖動:
_.debounce
撙節:
_.throttle