毕业论文开发语言企业开发JAVA技术.NET技术WEB开发Linux/Unix数据库技术Windows平台移动平台嵌入式论文范文英语论文
您现在的位置: 毕业论文 >> WEB开发 >> 正文

ck()中怎么让alert(boo+"222222")在alert(boo+"3333")之前显示。

更新时间:2012-9-5:  来源:毕业论文

ck()中怎么让alert(boo+"222222")在alert(boo+"3333")之前显示。


<script type="text/javascript">

var xmlHttpReq;  
  //创建XMLHTTP对象  
  function createXMLHttpRequest(){  
  if(window.ActiveXObject){  
  xmlHttpReq = new ActiveXObject("MSXML2.XMLHTTP.3.0");  
  }else{  
  xmlHttpReq = new XMLHttpRequest();  
  }  
  }  


function ck(){
createXMLHttpRequest();
var boo=true;
var name=document.getElementById("name").value;
var pwd=document.getElementById("pwd").value;
 
 
   
if(name==""||pwd==""){
boo =false;
alert("用户名或密码为空!")
}else{
var url="checkLogin?name="+name+"&password="+pwd;

xmlHttpReq.open("POST",url,true); 
  xmlHttpReq.onreadystatechange =function(){
  alert(xmlHttpReq.readyState);
  if(xmlHttpReq.readyState == 4){  
 
  if(xmlHttpReq.status == 200){  
  var result = xmlHttpReq.responseText;//将响应信息作为字符串返回  
  if(result.length==0){
  boo=true;
  }else{
  document.getElementById("resultspan").innerHTML="<b>"+result+"</b>";
  boo=false;
  }
   
   
  }  
  alert(boo+"222222");
  };
  }  
 
  xmlHttpReq.send(); 

}
alert(boo+"333");
return boo;

}

</script>

xmlHttpReq.open("POST",url,true); 把这个方法改为:
xmlHttpReq.open("POST",url,false); 试试看

设为首页 | 联系站长 | 友情链接 | 网站地图 |

copyright©youerw.com 优尔论文网 严禁转载
如果本毕业论文网损害了您的利益或者侵犯了您的权利,请及时联系,我们一定会及时改正。