防止重复点击 节流
节流
封装在js文件抛出(在需要的文件引入此js文件)
function throttle(fn,gapTime) {
if (gapTime == null || gapTime == undefined) {
gapTime = 1500
}
let _lastTime = null
return function () {
let _nowTime = + new Date()
if (_nowTime - _lastTime &
原创
2021-05-11 16:05:03 ·
155 阅读 ·
0 评论