码迷,mamicode.com
首页 > 微信 > 详细

小程序 节流函数 (防止按钮重复点击)

时间:2019-12-18 14:24:36      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:内容   UNC   null   小程序   util   undefined   function   data   time   

function throttle(fn, gapTime) {
    if (gapTime == null || gapTime == undefined) {
        gapTime = 1500
    }
 
    let _lastTime = null
    // 返回新的函数
    return function () {
        let _nowTime = + new Date()
        if (_nowTime - _lastTime > gapTime || !_lastTime) {
            fn.apply(this, arguments)   //将this和参数传给原函数
            _lastTime = _nowTime
        }
    }
}

module.exports = {
    throttle: throttle
}
    but_: util.throttle(function(e) {
        let that = this
        var data;
        //执行函数内容
    }, 1000),        

小程序 节流函数 (防止按钮重复点击)

标签:内容   UNC   null   小程序   util   undefined   function   data   time   

原文地址:https://www.cnblogs.com/wangshishuai/p/12059618.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!