web前端根据接口获取手机短信(亲测,100%行)

来源:互联网 发布:矩阵相似矩阵的迹 编辑:程序博客网 时间:2024/06/05 21:56
function sendMessage(){    var userAccount = $("#userAccount").val().trim();    var tell=/^1(3|4|5|7|8)\d{9}$/;    if(!userAccount){        $.alert("请输入手机号码");        return false;    }else if(!tell.test(userAccount)){        $.alert("请输入正确的手机号码!");        return false;    }else {        $.ajax({            url: "",//获取接口            type: "post",            data: {                //获取接口参数            },            dataType: "json",            success: function (obj) {                disabledVerifCode(60);                if (obj.message == "OK") {//短信获取成功                    disabledVerifCode(60);                } else {                    $.alert(obj.message);                }            },            error: function (data) {                $.alert("验证码获取失败");            }        });    }}function disabledVerifCode(second){    second--;    if(second){        $("#btnSendCode").attr("disabled","disabled");        $("#btnSendCode").html("重新获取("+second+"秒)");        setTimeout("disabledVerifCode("+second+")", 1000);    }else{        $("#btnSendCode").removeAttr("disabled");        $("#btnSendCode").html("重新获取");    }}
0 0
原创粉丝点击