$("form").submit(function(){
var drage=$(".drag_text").html();
function Iphone(){
phone= $('.phone').val();
var drage=$(".drag_text").html();
var reg=/^[1][3,4,5,7,8][0-9]{9}$/;
if(phone == ""){
$(".error").html("不能为空").css("color","#f90");
$('.phone').css("border","1px solid #f90");
return false;
}else if(!reg.test(phone)){
$(".error").html("输入格式错误!").css("color","#f90");
$('.phone').css("border","1px solid #f90");
return false;
} else{
$(".error").html("输入正确").css("color","#1d8f0a");
$('.phone').css("border","1px solid #1d8f0a");
if(drage !== "验证通过"){
$("#Iy").html("请滑动验证");
return false;
}else {
$("#Iy").html("");
return true;
}
return false;
}
}
Iphone();
function Iemil(){
phoneV= $('.phone').val();
var regb = /^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/;
if(regb.test(phoneV)){
$(".error").html("输入正确").css("color","#1d8f0a");
$('.phone').css("border","1px solid #1d8f0a");
if(drage !== "验证通过"){
$("#Iy").html("请滑动验证");
return false;
}else {
$("#Iy").html("");
return true;
}
return false;
}
}
Iemil();
return false;
})
验证完成之后为什么总是不能挑砖到第二步?
你代码最后 return false;
改成return Iphone() && Iemil();
邮箱好像没有被调用