日期:2014-05-17 浏览次数:20638 次
function regCheck() { //alert("gghgh"); check_UserName(); if(!check_UserName_bool || $("text_UserName").value =="") { $("text_UserName").focus(); return false; } alert("通过了啊"); check_UserPWD1(); if(!check_UserPWD1_bool|| $("text_UserPWD1").value =="") { $("text_UserPWD1").focus(); return false; } check_UserPWD2(); if(!check_UserPWD2_bool) { $("text_UserPWD2").focus(); return false; } //alert("验证 Email 时:" + check_UserName_bool); //check_UserEmail(); alert("验证时 Email:" + check_UserName_bool); if(!check_UserEmail_bool || $("text_UserEmail").value =="") { $("text_UserEmail").focus(); return false; } alert(" Email 通过了啊"); check_ValidCode(); if(!check_ValidCode_bool) { $("text_ValidCode").focus(); return false; } }