美文网首页
JavaScript防抖

JavaScript防抖

作者: 利麦乐 | 来源:发表于2020-05-06 14:17 被阅读0次

    function debounce(fn,delay){

    let delagTime = delag || 500

    let timer

    return function () {

    let self = this

    let args = arguments

    if (timer) {

    clearTimerout(timer)

    }

    timer = setTimeout(function (){

    timer = null

    fb.apply(self, args)

    },delagTime)

    }

    }

    相关文章

      网友评论

          本文标题:JavaScript防抖

          本文链接:https://www.haomeiwen.com/subject/fbqwghtx.html