本帖最后由 陌小夕 于 2018-5-28 02:19 编辑
最近在做项目 模仿的网页 需要的拿去玩,有小bug,能改自己改 后续的慢慢发 数据库就不发了
链接: https://pan.baidu.com/s/18TjU49hfdIxj41lpeDsOjg 密码: bj8e
[Java] 纯文本查看 复制代码 $(".register-btn").click(function(){
var phone = $("#phone").attr("value");
var name = $("#r-username").attr("value");
var pwd = $("#r-password").attr("value");
var sms = $("#sms_code").attr("value");
var code = document.cookie.split(";")[0].split("=")[1];//获取cookie
var mobile = document.cookie.split(";")[0].split("=")[1];//获取cookie
if (code != null && mobile != null) {
code = code.substring(1,7);//截取验证码
mobile = mobile.substring(6);//截取手机号
}
alert(code);
if (phone==""||name==""|| pwd == ""||sms == ""){
return false;
}else if(sms != code){
$(".text-code").text("验证码有误");
return false;
}else if(phone != mobile){
$(".text-phone").text("您输入的手机号与接收验证码手机号不匹配");
}else{
$(".text-code").text("");
$(".text-phone").text("");
var URL = "servlet/LoginServlet?opr=register";
var data = "&phone="+phone+"&name="+name+"&pwd="+pwd;
$.getJSON(URL,data,function(result){
if(result == true){
$(location).attr('href', 'index.jsp');
}else{
}
});
}
}); |