zoukankan      html  css  js  c++  java
  • 获取手机校验码倒计时

    $('.getCode').on('click',function(){
                        if($('.tel').val().replace(/s/g,'')==''||!telReg.test($('.tel').val().replace(/s/g,''))){
                            tips('请输入正确的登录账号');
                            return;
                        }else{
                            if(toggle){
                                $.ajax({
                                    url:请求地址,
                                    type:'post',
                                    contentType:"application/x-www-form-urlencoded",
                                    data:{tel:$('.tel').val().replace(/s/g,'')},
                                    async:false,
                                    dataType:'json',
                                    success:function(result) {
                                        if(result.code==0){
                                            toggle=false;
                                            $('.getCode').addClass('active');
                                            $('.getCode span').html('60秒后重新获取');
                                            timEnd = setInterval(timer,1000);
                                        }else{
                                            tips(result.msg);
                                        }
                                    },
                                    error:function(){
                                        tips("ajaxError数据请求失败,请重试!");
                                    }
                                })
                            }else{
                                return;
                            }
                        }
                    })
                    function timer(){
                        if(i>1){
                            i--;
                            $('.getCode span').html(i+'秒后重新获取');
                        }else{
                            clearInterval(timEnd);
                            $('.getCode').removeClass('active');
                            $('.getCode span').html('获取验证码');
                            i=60;
                            toggle=true;
                        }
                    }
  • 相关阅读:
    自动化部署功
    docker 安装
    批量操作
    centos7 内核升级
    centos 6.5 升级 内核
    如何进行再linux 下查看 java程序的堆栈信息
    binlog 日志恢复以及操作
    java 中 Integer 比较 问题
    docker 使用
    soucetree 安装
  • 原文地址:https://www.cnblogs.com/DreamerLeaf/p/7200727.html
Copyright © 2011-2022 走看看