throttle.js --> 写在utils文件夹中

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
}


页面中引用

var throttle = require(../../utils/throttle)

// 点击事件
collect: throttle.throttle(function(){})