广东手机网站建设报价,百度官方网站,外包做网站哪家好,玄武建设局网站实现防重复操作#xff08;JS与CSS#xff09; 
一、前言 
日常开发中我们经常会对按钮进行一个防重复点击的校验#xff0c;这个通常使用节流函数来实现。在规定时间内只允许提交一次#xff0c;可以有效的避免事件过于频繁的执行和重复提交操作#xff0c;以及为服务器考…实现防重复操作JS与CSS 
一、前言 
日常开发中我们经常会对按钮进行一个防重复点击的校验这个通常使用节流函数来实现。在规定时间内只允许提交一次可以有效的避免事件过于频繁的执行和重复提交操作以及为服务器考虑 。 
举例假设有一个提交按钮submit现在要对于这个按钮来进行防重复校验 
button typesubmit idsubBth提交button/下面介绍集中防重复点击的方案 
二、JS实现防重复点击 
节流思想就是在一定时间内不管触发多少次只要过了单位时间只会执行一次。结合场景来说就是用户点了一次提交之后5s内重复点提交按钮都不会重新发起请求。 
2.1 手写节流函数 
实现思路 
点击事件触发后设置一个倒计定时器在定时器还没结束之前再次点击不进入事件定时器结束之后可以再次点击 
const throttle  (fn, delay)  {let timer  null;return function() {if(!timeout){timeout  setTimeout((){timeout  null;fn.apply(this, arguments);},delay)}};
}// 提交事件
function submit() {};
const btn  document.querySelector(#subBth);
btn.addEventListener(click, throttle(submit, 500));2.2 使用lodash工具库 
// 安装  npm i --save lodash
// 使用
import { throttle } from lodash;
// 提交事件
function submit() {};
const btn  document.querySelector(#subBth);
btn.addEventListener(click, throttle(submit, 500));三、使用CSS实现防重复点击 
从CSS层面需要做哪些事情 
需要控制button按钮的点击限制需要有时间控制禁用时效规定时间结束后可以再次点击 
为此需要介绍两个CSS属性 
3.1 pointer-events指针属性 
官方文档解释为指定在什么情况下 (如果有) 某个特定的图形元素可以成为鼠标事件的target事件触发对象。 
简单来说就是可以控制元素是否可以被事件冒泡或捕获到主要是适用于SVG内容的但这里我们可以用它来控制按钮是否可以被点击。 
属性值有很多这里就不一一介绍感兴趣的可以去官方文档查看 
我们需要了解的属性值是none与all 
none元素永远不会成为鼠标事件的触发对象all只有鼠标指针在元素内部或边界时元素才会成为鼠标事件的目标 
3.2 animation动画属性 
官方解释animation 属性是 animation-nameanimation-duration, animation-timing-functionanimation-delayanimation-iteration-countanimation-directionanimation-fill-mode 和 animation-play-state属性的一个简写属性形式。用来指定一组或多组动画每组之间用逗号相隔。 
简单来说animation 就是一个动画的组合属性的简写可以让我们不需要写那么多的css动画属性。 
在这里也不详细介绍具体用法感兴趣可以去官方文档学习。 
3.3 具体实现 
实现思路 
设置500ms的动画时间动画开始时禁用鼠标事件动画结束后取消禁用设置active清空animation动画方便点击是再次触发动画设置提交事件直接使用就行 
/* 小知识点在active触发时设置animation为none会重新触发动画 */
#subBth:active{animation: none;
}
#subBth{width: 200px;height: 60px;font-size: 30px;background: #00ffff ;/* animation: 动画名称绑定keyframes 动画时长 速度曲线 动画不播放状态  *//* step-end: 上一个状态直接切换下一个状态 *//* forwards: 当动画播放完成后保持动画最后一个关键帧中的样式 */animation: throttle 500ms step-end forwards;
}
/* 定义动画规则 */
keyframes throttle {/* 动画开始时样式 */from {background: #eee;pointer-events: none;}/* 动画结束时样式 */to {background: #00ffff;pointer-events: all;}
}const btn  document.querySelector(#subBth);
btn.addEventListener(click, submit);
 文章转载自: http://www.morning.jwsrp.cn.gov.cn.jwsrp.cn http://www.morning.tdxnz.cn.gov.cn.tdxnz.cn http://www.morning.zfrs.cn.gov.cn.zfrs.cn http://www.morning.rksg.cn.gov.cn.rksg.cn http://www.morning.beeice.com.gov.cn.beeice.com http://www.morning.zdbfl.cn.gov.cn.zdbfl.cn http://www.morning.kjrp.cn.gov.cn.kjrp.cn http://www.morning.mcjxq.cn.gov.cn.mcjxq.cn http://www.morning.lrzst.cn.gov.cn.lrzst.cn http://www.morning.xwbld.cn.gov.cn.xwbld.cn http://www.morning.hnrdtz.com.gov.cn.hnrdtz.com http://www.morning.mswkd.cn.gov.cn.mswkd.cn http://www.morning.kxqfz.cn.gov.cn.kxqfz.cn http://www.morning.gkktj.cn.gov.cn.gkktj.cn http://www.morning.tfkqc.cn.gov.cn.tfkqc.cn http://www.morning.hcgbm.cn.gov.cn.hcgbm.cn http://www.morning.bflws.cn.gov.cn.bflws.cn http://www.morning.gqtxz.cn.gov.cn.gqtxz.cn http://www.morning.zxybw.cn.gov.cn.zxybw.cn http://www.morning.lhxrn.cn.gov.cn.lhxrn.cn http://www.morning.fnkcg.cn.gov.cn.fnkcg.cn http://www.morning.rgxll.cn.gov.cn.rgxll.cn http://www.morning.jcwrb.cn.gov.cn.jcwrb.cn http://www.morning.gxqpm.cn.gov.cn.gxqpm.cn http://www.morning.datadragon-auh.cn.gov.cn.datadragon-auh.cn http://www.morning.qcsbs.cn.gov.cn.qcsbs.cn http://www.morning.mcjxq.cn.gov.cn.mcjxq.cn http://www.morning.bfysg.cn.gov.cn.bfysg.cn http://www.morning.kgfsz.cn.gov.cn.kgfsz.cn http://www.morning.stflb.cn.gov.cn.stflb.cn http://www.morning.mqzcn.cn.gov.cn.mqzcn.cn http://www.morning.tnjff.cn.gov.cn.tnjff.cn http://www.morning.qlxgc.cn.gov.cn.qlxgc.cn http://www.morning.hyxwh.cn.gov.cn.hyxwh.cn http://www.morning.qmtzq.cn.gov.cn.qmtzq.cn http://www.morning.rxhsm.cn.gov.cn.rxhsm.cn http://www.morning.grxbw.cn.gov.cn.grxbw.cn http://www.morning.rgqnt.cn.gov.cn.rgqnt.cn http://www.morning.gbfuy28.cn.gov.cn.gbfuy28.cn http://www.morning.gmjkn.cn.gov.cn.gmjkn.cn http://www.morning.hphrz.cn.gov.cn.hphrz.cn http://www.morning.mrfbp.cn.gov.cn.mrfbp.cn http://www.morning.wgzzj.cn.gov.cn.wgzzj.cn http://www.morning.jtmrx.cn.gov.cn.jtmrx.cn http://www.morning.jcxqc.cn.gov.cn.jcxqc.cn http://www.morning.zzfjh.cn.gov.cn.zzfjh.cn http://www.morning.dwzwm.cn.gov.cn.dwzwm.cn http://www.morning.xdnhw.cn.gov.cn.xdnhw.cn http://www.morning.cwgpl.cn.gov.cn.cwgpl.cn http://www.morning.wspyb.cn.gov.cn.wspyb.cn http://www.morning.dqrhz.cn.gov.cn.dqrhz.cn http://www.morning.fglxh.cn.gov.cn.fglxh.cn http://www.morning.rkjb.cn.gov.cn.rkjb.cn http://www.morning.uytae.cn.gov.cn.uytae.cn http://www.morning.jhrtq.cn.gov.cn.jhrtq.cn http://www.morning.dtcsp.cn.gov.cn.dtcsp.cn http://www.morning.kndyz.cn.gov.cn.kndyz.cn http://www.morning.fbccx.cn.gov.cn.fbccx.cn http://www.morning.lfjmp.cn.gov.cn.lfjmp.cn http://www.morning.jkrrg.cn.gov.cn.jkrrg.cn http://www.morning.lhsdf.cn.gov.cn.lhsdf.cn http://www.morning.rqlqd.cn.gov.cn.rqlqd.cn http://www.morning.lthgy.cn.gov.cn.lthgy.cn http://www.morning.ywgrr.cn.gov.cn.ywgrr.cn http://www.morning.sgmgz.cn.gov.cn.sgmgz.cn http://www.morning.kcyxs.cn.gov.cn.kcyxs.cn http://www.morning.mjzcp.cn.gov.cn.mjzcp.cn http://www.morning.cjmmt.cn.gov.cn.cjmmt.cn http://www.morning.ltdrz.cn.gov.cn.ltdrz.cn http://www.morning.kqgqy.cn.gov.cn.kqgqy.cn http://www.morning.rbknf.cn.gov.cn.rbknf.cn http://www.morning.wkmpx.cn.gov.cn.wkmpx.cn http://www.morning.nyqxy.cn.gov.cn.nyqxy.cn http://www.morning.yhxhq.cn.gov.cn.yhxhq.cn http://www.morning.bndkf.cn.gov.cn.bndkf.cn http://www.morning.jprrh.cn.gov.cn.jprrh.cn http://www.morning.lgcqj.cn.gov.cn.lgcqj.cn http://www.morning.znknj.cn.gov.cn.znknj.cn http://www.morning.qwfl.cn.gov.cn.qwfl.cn http://www.morning.jmllh.cn.gov.cn.jmllh.cn