美文网首页
前端防抖

前端防抖

作者: Devin_tao | 来源:发表于2019-11-13 14:58 被阅读0次

    前端防抖

            // 防抖
            function debounce(fn, delay) {
                var timer = null;
                return function () {
                    var _this = this;
                    // 在规定时间内再次触发会先清除定时器后再重设定时器
                    clearTimeout(timer);
                    timer = setTimeout(function () {
                        fn.apply(_this, arguments)
                    }, delay);
                }
            }
    

    相关文章

      网友评论

          本文标题:前端防抖

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