js代码实现点击按钮出现60秒倒计时
网络编程 2021-07-04 21:04www.168986.cn编程入门
这篇文章主要为大家详细介绍了js代码实现点击按钮出现60秒倒计时,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
比如,一些网站上的手机短信认证的功能,有类似实现点击按钮后,倒计时60秒才能点击发送的效果。
此例子用Javascript实现点击按钮后,倒计时60秒才能点击发送验证码的功能。
例子1Javascript 实现 点击按钮 倒计时60秒方可点击发送的效果
<input type="button" id="btn" value="免费获取验证码" /> <script type="text/javascript"> var wait=60; function time(o) { if (wait == 0) { o.removeAttribute("disabled"); o.value="免费获取验证码"; wait = 60; } else { o.setAttribute("disabled", true); o.value="重新发送(" + wait + ")"; wait--; setTimeout(function() { time(o) }, 1000) } } document.getElementById("btn").onclick=function(){time(this);} </script>
例子2点击按钮出现60秒倒计时js代码
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> <script type="text/javascript" src="js/jquery.js"></script> </head> <body> <input type="button" id="btn" value="免费获取验证码" onclick="settime(this)" /> <script type="text/javascript"> var countdown=60; function settime(val) { if (countdown == 0) { val.removeAttribute("disabled"); val.value="免费获取验证码"; countdown = 60; } else { val.setAttribute("disabled", true); val.value="重新发送(" + countdown + ")"; countdown--; } setTimeout(function() { settime(val) },1000) } </script> </body> </html>
例子3点击按钮后,60秒倒计时后才能继续可以点击,按钮上还能显示倒计时
预想的效果图:
这是微信公众平台上的代码
function E() { var e = $("#mobile"), t = (new Date).getTime(), n = Math.floor((t - b) / 1e3); g && clearTimeout(g), n >= 60 ? (e.prop("readonly", !1), y = !0, $("#sendmobile").html("发送验证码").attr("disabled", !1).removeClass("btn_disabled")) : (e.prop("readonly", !0), y = !1, $("#sendmobile").attr("disabled", !0).addClass("btn_disabled").html("%s秒后可重发".sprintf(60 - n)), g = setTimeout(E, 1e3)); } function S() { function e() { if (!y) return; var e = $.trim(n.val()); l.mobile(e) ? t.attr("disabled", !1).removeClass("btn_disabled") : t.attr("disabled", !0).addClass("btn_disabled"); } var t = $("#sendmobile"), n = $("#mobile"); n.keyup(e).blur(e), e(), t.click(function() { var e; t.attr("disabled") !== "disabled" && (e = "+86" + $.trim(n.val()), b = (new Date).getTime(), E(), o.post({ url: w ? "/cgi-bin/formbyskey" : "/at/formbyticket", data: { form: "mobile", action: "set", f: "json", mobile: e }, mask: !1 }, function(e) { var t = e.BaseResp.Ret; if (t == 0) u.suc("验证码已经发送"); else { switch (t) { case -13: u.err("登录超时,请重新登录"); break; case -35: u.err("该手机已经登记过2次,请使用别的手机号进行用户信息登记"); break; default: u.err("验证码发送失败"); } b = 0; } })); }); }
这段代码长沙网络推广就是不知道怎么才能调用到自己的代码上来,经过高人指点有了一些头寻。
高人的解题思路如果严格的话,这个还要结合后台获取时间的,要不然别人刷新一下就行了。
如果不严格,用个cookie也可以。
<script src="http://lib.sinaapp./js/jquery/1.7.2/jquery.min.js"></script> <script src="http://yukon12345./yukon12345./js/jquery.cookie.js"></script> <script> time1=$.cookie("time1")||60; time2=$.cookie("time2")||60; dis1=$.cookie("dis1") dis2=$.cookie("dis2") function countDown($obj){ var time; if($obj.attr("id")=="b1") { time=--time1; $.cookie("time1",time,{"expires":1}); if(time<=0){ time1=60; $obj[0].disabled=!$obj[0].disabled clearInterval(inter1) $obj.text("点击发送") $.cookie("dis1","") return } } if($obj.attr("id")=="b2") { time=--time2; $.cookie("time2",time,{"expires":1}); if(time<=0){ time1=60; $obj[0].disabled=!$obj[0].disabled clearInterval(inter2) $obj.text("点击发送") $.cookie("dis2","") return } } $obj.text(time+"秒后重新发送") } $(function(){ if(dis1="dis"){ $("#b1")[0].disabled='disabled' inter1=setInterval(function(){countDown($("#b1"))},1000) } if(dis2="dis"){ $("#b2")[0].disabled='disabled' inter2=setInterval(function(){countDown($("#b2"))},1000) } $(".cd").bind("click",function(){ $this=$(this); //没有被禁用时禁用并执行倒计时 if(!$this[0].disabled){ $this[0].disabled='disabled'; if($this.attr("id")=="b1"){ $.cookie("dis1","dis",{"expires":1}) inter1=setInterval(function(){countDown($this)},1000) } if($this.attr("id")=="b2"){ $.cookie("dis2","dis",{"expires":1}) inter2=setInterval(function(){countDown($this)},1000) } } }) }) </script> <button id="b1" class="cd" >点击发送</button><br> <button id="b2" class="cd" >点击发送</button><br>
更多关于倒计时的文章请查看专题
大家通过这三个例子讲解有没有点思路了,那就动手实现一下吧,希望对大家学习javascript程序设计有所帮助。
上一篇:js倒计时抢购实例
下一篇:js实现无缝滚动特效
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程