帮我写一个防抖节流的代码
时间: 2023-03-14 22:05:26 浏览: 75
js代码-手写js节流
我可以给你一个例子:function throttle(fn, wait) {
let inThrottle
return function() {
const context = this
const args = arguments
if (!inThrottle) {
fn.apply(context, args)
inThrottle = true
setTimeout(() => inThrottle = false, wait)
}
}
}
阅读全文