节流函数

概念解读

函数节流是指必定时间内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)
        }
    }
}
相关文章
相关标签/搜索