xmlhttprequest对象已经创建好了!
xmlHttp.onreadystatechange=callBack;
xmlHttp.open("POST","AjaxXML",true);
xmlHttp.send("username='"+name+"'");
这个是callback方法
function callBack()
{
alert(xmlHttp.readyState);
// 接受服务器端返回的数据
// readyState的值等于4是表示对象与服务器端交互成功的
if(xmlHttp.readyState == 4)
{ //status的值等于200,表示http与服务器交互成功
if(xmlHttp.status== 200)
{
//获取服务器端返回的数据
var domobj=xmlHttp.responseXML;
var message=domobj.getElementsByTagName("message");
if(message.length>0)
var text=message[0];
else
document.getElementById("result").innerHTML=xmlHttp.responseText;;
}
}
}