throttle(func, delay)
创建一个节流函数,在 delay 秒内最多执行 func 一次的函数。
delay
func
{Function}
{number}
{Function}: 返回新的防抖函数。
// 这个函数会在滚动过程中,每隔200ms执行一次 window.onscroll = throttle(() => { console.log('这个函数会在滚动停止后的200ms后执行') }, 200)
← debounce Lock →