xmlHttp.open("GET","check2.php?userName="+userName,true);
第一步:
xmlHttp.open("GET","check2.php?userName="+userName,true);
第二步:
xmlHttp.send(null);
第三步:
这一步是一个回调函数,回调函数其实就和打电话代办事情是一个意思
这个回调函数其实就是状态改变的时候,js应该做什么事情
xmlHttp.onreadystatechange =
function(){
if(xmlHttp.readyState ==
4){
if(xmlHttp.status ==
200){
var txt =
xmlHttp.responseText;
var tishi =
document.getElementById("tishi");
if(txt ==
"1"){
tishi.innerHTML =
"用户已经被注册,请选用其他用户名";
tishi.style.cssText =
"font-size:16px;color:red;background:#ccc;display:block";
}else{
tishi.innerHTML =
"用户可以注册";
tishi.style.cssText =
"font-size:16px;color:green;background:#ccc;display:block";
}
}
}
}
xmlHttp.onreadystatechange = getTxt;
500 -------------- 服务器内部错误 (语法错误)
404 ------------- 没有文件 (链接出问题)
100 ------------- 连接过去,找到文件了
200 ------------- 成功
原文地址:http://www.cnblogs.com/zouyajun/p/3719603.html