共计 504 个字符,预计需要花费 2 分钟才能阅读完成。
节流阀 throttle
触发的事件以周期的形式去执行,而非实时。如滴水的水龙头。
function throttle (fn, delay) {
// 利用闭包变量时效性
let timeout
return function () {
const arg = arguments
if (timeout) {
timeout = setTimeout(() => {
fn.apply(this, arg)
timeout = null
}, delay)
}
}
}
// demo
/*
var test = throttle(function (a) {console.log(a)}, 1000)
test(1) // 不执行
test(2) // 不执行
test(3)
=> 3
test = null // 不需要时释放内存
*/
去抖动 debounce
事件最后一次触发的 N 毫秒后触发,如电梯门。
function debounce (fn, delay){
let timeout
return function(){
const args = arguments
clearTimeout(timeout)
timeout = setTimeout(() => {
fn.apply(this, args)
}, delay)
}
}
// 用法同 throttle
正文完
发表至: javascript
2019-04-12