码迷,mamicode.com
首页 > Web开发 > 详细

js按钮频繁提交解决方案:

时间:2019-05-22 19:05:07      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:timeout   settime   ott   防止   anr   div   操作   run   script   

1.封装js:

/// 函数节流
xhz.canRun = true;
xhz.Throttling = function () {
if (!xhz.canRun) {
layer.msg(‘处理中,不要频繁操作!‘, { zIndex:999999999, time: 2000 });
return false;
}
xhz.canRun = false;
setTimeout(function () {
xhz.canRun = true;
}, 2000);
return true;
}

  


2.调用方法:

//防止频繁提交
if (!xhz.Throttling()) {
return;
}

  

js按钮频繁提交解决方案:

标签:timeout   settime   ott   防止   anr   div   操作   run   script   

原文地址:https://www.cnblogs.com/BoKeYuan259/p/10907662.html

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