节流函数
限制函数在指定时间间隔内只能执行一次。
const throttledFn = throttle(() => console.log('Throttled!'), 1000)window.addEventListener('scroll', throttledFn) Copy
const throttledFn = throttle(() => console.log('Throttled!'), 1000)window.addEventListener('scroll', throttledFn)
要执行的函数
节流时间间隔(毫秒)
节流后的函数
Rest
节流函数
限制函数在指定时间间隔内只能执行一次。
Example