function sendCode(){
$("#nickname").blur();
$("#email").blur();
if ($("#nickname").next().css("display") != "none") {
return;
}
if ($("#email").next().next().css("display") != "none") {
return;
}
// 昵称
var nickName = $.trim($("#nickname").val());
//获取邮箱
var email = $.trim($("#email").val());
$("#getCode").attr("disabled", "true"); // 不允许再点击
//请求方式 地址 参数 回调函数
// TODO: 发送请求
//随机一个六位数的验证码
for(let i =0;i<6;i++){
code += Math.floor(Math.random()*10)+"";
}
alert("您的验证码为:"+code);
//倒计时60秒
let times =60;
let timeInter = setInterval(()=>{
$("#getCode").val(times--);
if(times < 0 ){
clearInterval(timeInter);
$("#getCode").RemoveAttr("disabled").val("再次获取验证码");
}
},1000)
}