点击获取验证码后60秒内禁止重复获取 使用jQuery.cookie插件防刷新倒计时

之前遇到手机获取短信验证码倒计时防止60秒内重复刷新的问题,网站搜了很多资料,也进行了测试,效果都不太理想,有的代码写的也比较繁琐,后来又找了许多,发现这个可以实现功能,代码很简单,分享给大家

先附一张效果图吧

用到的插件需要去官方下载http://plugins.jQuery.com/cookie/ 下载cookie插件,把文件放到对应目录

代码如下:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Examples</title>
<meta name="description" content="">
<meta name="keywords" content="">
/*注意插件引用顺序*/
<script src="./jquery.min.js" ></script>
<script src="./jquery.cookie.js" ></script>
<style type="text/css">
    *{margin: 0; padding: 0; font-family: "Microsoft Yahei";}  
    .captcha-box{width: 360px; height: 34px; margin: 30px; padding: 30px; border: #956E6F 1px dashed; border-radius: 5px; background-color: #FAF2F2;}  
    #mobile { float: left; width: 180px; height: 32px; border: #e5e5e5 1px solid; line-height: 32px; text-indent: 8px; outline: none;}  
    #getting {float: left; height: 34px; margin-left: -1px; padding: 0 18px; text-align: center;  line-height: 34px; border: #e5e5e5 1px solid; background: linear-gradient(0deg, #f4f2f2 0%,#fbf9f9 100%); cursor: pointer; outline: none;}  
</style>  
<script>  
    $(function(){  
        /*仿刷新:检测是否存在cookie*/  
        if($.cookie("captcha")){  
            var count = $.cookie("captcha");  
            var btn = $('#getting');  
            btn.val(count+'秒后可重新获取').attr('disabled',true).css('cursor','not-allowed');  
            var resend = setInterval(function(){  
                count--;  
                if (count > 0){  
                    btn.val(count+'秒后可重新获取').attr('disabled',true).css('cursor','not-allowed');  
                    $.cookie("captcha", count, {path: '/', expires: (1/86400)*count});  
                }else {  
                    clearInterval(resend);  
                    btn.val("获取验证码").removeClass('disabled').removeAttr('disabled style');  
                }  
            }, 1000);  
        }  
   
        /*点击改变按钮状态,已经简略掉ajax发送短信验证的代码*/  
        $('#getting').click(function(){  
            var btn = $(this);  
            var count = 60;  
            var resend = setInterval(function(){  
                count--;  
                if (count > 0){  
                    btn.val(count+"秒后可重新获取");  
                    $.cookie("captcha", count, {path: '/', expires: (1/86400)*count});  
                }else {  
                    clearInterval(resend);  
                    btn.val("获取验证码").removeAttr('disabled style');  
                }  
            }, 1000);  
            btn.attr('disabled',true).css('cursor','not-allowed');  
        });  
   
    });  
</script>  
</head>  
<body>  
    <div class="captcha-box">  
        <input type="text" id="mobile" maxlength="11" placeholder="请输入手机号码">  
        <input type="button" id="getting" value="获取验证码">  
    </div>  
</body>  
</html> 

 

快易付打赏按钮

转载于:https://my.oschina.net/ikuaipay/blog/850113

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值