这里的checkName()w为什么不能是我所期待的返回值(true/false),怎么获得chekName()的返回值,在使用ajax的基础上?求高人指点,
刚开始学习使用ajax进行表单验证;遇到这种问题不知道怎么解决?
function checkName(){
var name=ele.name.value;
if(name!= ""){
xmlhttp=new XMLHttpRequest();
url="http://localhost/chkname.php";
xmlhttp.onreadystatechange =function(){
if(xmlhttp.readyState == 4){
if(xmlhttp.status == 200){
var msg = xmlhttp.responseText;
if(msg == '1'){
ele.name.className="";//移除class
ele.imgs[0].setAttribute("src","img/right.jpg"); //对应图标
ele.imgs[0].style.display = "inline"; //显示
return true;
}else{
ele.name.className="borderRed";//移除class
ele.imgs[0].setAttribute("src","img/wrong.jpg"); //对应图标
ele.imgs[0].style.display = "inline"; //显示
biaoqian1.innerHTML='<strong class="tips_false">该用户名已存在</strong>';
return false;
}
}
}
}
xmlhttp.open('POST',url,true);
xmlhttp.send(null);
}
function check(){ //表单提交则验证开始
if(checkName()&&checkPassw2()&&checkEmail()){
alert(" 注册成功"); //注册成功
return true;
}
else{
alert("请正确的填写完信息!");
return false;
}
}
异步的ajax实际上使用了单独的进程,因此无法获取到这个返回值,而且,在调用ajax()方法时你根本无法知道它什么时候会执行完毕。 因此对于异步的ajax来说,你无法主动的获取其返回值,只能提供回调方法,ajax对象可以将参数传递到你提供的回调方法中,如上面,自己通过回调函数获得了返回值。
//ajax验证name
var ajaxResult = false;//全局变量
function ajaxResultdeal(response){
ajaxResult = response; //传递给全局变量
if(ajaxResult == '1'){
ele.name.className="";//移除class
ele.imgs[0].setAttribute("src","img/right.jpg"); //对应图标
ele.imgs[0].style.display = "inline"; //显示
ajaxResult= true;
}
else{
ele.name.className="borderRed";//移除class
ele.imgs[0].setAttribute("src","img/wrong.jpg"); //对应图标
ele.imgs[0].style.display = "inline"; //显示
biaoqian1.innerHTML='<strong class="tips_false">该用户名已经存在</strong>';
ajaxResult=false;
}
ajaxResultreturn();
}
function ajaxResultreturn(){
if(ajaxResult){return true;}
else{
return false;
}
}
function toAjax(url,callback){
xmlhttp=new XMLHttpRequest();
/*url="http://localhost/chkname.php"; */
xmlhttp.onreadystatechange =function(){
if(xmlhttp.readyState == 4){
if(xmlhttp.status == 200){
if(callback) {
callback(xmlhttp.responseText);
}
}
}
}
xmlhttp.open('POST',url,true);
xmlhttp.send(null);
}
function checkName(){
var name=ele.name.value;
var url="http://localhost/chkname.php";
var cb = ajaxResultdeal;
toAjax(url,cb);
}
function check(){ //表单提交则验证开始
if(ajaxResultreturn()&&checkPassw2()&&checkEmail()){
alert(" 注册成功"); //注册成功
return true;
}
else{
alert("请正确的填写完信息!");
return false;
}
}
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。