开发者社区> 问答> 正文

ajax:怎么获得onreadystatechange调用的函数的返回值?

这里的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;
          }
    }

展开
收起
a123456678 2016-03-11 14:11:37 4779 0
1 条回答
写回答
取消 提交回答
  • 异步的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;
              }
        }
    2019-07-17 18:59:11
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
建立联系方法之一 立即下载
低代码开发师(初级)实战教程 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载

相关实验场景

更多