函数节流是指必定时间内js方法只跑一次。
生活例子:人的眨眼睛,就是必定时间内眨一次。app
一、鼠标不断点击触发,mousedown(单位时间内只触发一次)。
二、监听滚动事件(它是一个高频触发对事件),好比是否滑到底部自动加载更多,用throttle来判断。函数
function throttle(fun, delay) { let last, deferTimer return function (args) { let that = this let _args = arguments let now = +new Date() if (last && now < last + delay) { clearTimeout(deferTimer) deferTimer = setTimeout(function () { last = now fun.apply(that, _args) }, delay) }else { last = now fun.apply(that,_args) } } }