script,[object Object]

# 实现一个节流函数

window.addEventListener('scroll', fang(dou, 2000))

function dou() {
    console.log(1)
}

function fang(dou, shi) {
    var timer = true;
    return function () {
        if (!timer) return
        timer = false
        setTimeout(() => {
            dou.apply(this, arguments)
            timer = true
        }, shi)
    }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

关于评论

评论前请填好“昵称”、“邮箱”这两栏内容,否则不会收到回复,谢谢!

  • +
  • -