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

手机发送验证码

时间:2019-01-05 17:13:36      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:val   tco   remove   --   als   lse   验证手机号码   let   int   

$(document).on(click,#getcode,function(){

    var tel = $(#tel).val();
    var _this = $(#getcode);
    var _this_html = _this.html();
    const numreg = /^\d/;
    const reg = /^1[3|4|5|6|7|8]\d{9}$/;

    if (numreg.test(_this_html)){
        return false;
    }

    if (reg.test(tel)) {     //验证手机号码规则
        let count = 60;
        let timer = setInterval(() => {
            count--;
            $(_this).html(count + s重新获取);
            if (count === 0) {
                // $(_this).removeAttr(‘disabled‘);
                // $(_this).removeClass(‘disabled_btn‘);
                clearInterval(timer);
                $(_this).val(获取验证码);
            }
        }, 1000)
    } else {
        alert(请输入正确的手机号码)
    }
});

 

手机发送验证码

标签:val   tco   remove   --   als   lse   验证手机号码   let   int   

原文地址:https://www.cnblogs.com/pansidong/p/10225139.html

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