XMLHttpRequest简介
要真正实现这种绚丽的奇迹,必须非常熟悉一个JavaScript对象,即XMLHttpRequest。这个小小的对象实际上已经在几种浏览器中存在一段时间了,它是本专栏今后几个月中要介绍的Web2.0、Ajax和大部分其他内容的核心。为了让您快速地大体了解它,下面给出将要用于该对象的很少的几个方法和属性。
open():建立到服务器的新请求。
send():向服务器发送请求。
abort():退出当前请求。
readyState:提供当前HTML的就绪状态。
responseText:服务器返回的请求响应文本。
客户端HTML代码:
复制代码 代码如下:
varxmlHttp=false;
try{
xmlHttp=newXMLHttpRequest();
}catch(trymicrosoft){
try{
xmlHttp=newActiveXObject("Msxml2.XMLHTTP");
}catch(othermicrosoft){
try{
xmlHttp=newActiveXObject("Microsoft.XMLHTTP");
}catch(failed){
xmlHttp=false;
}
}
}
if(!xmlHttp)
alert("ErrorinitializingXMLHttpRequest!");
functiongetCustomerInfo(){
varphone=document.getElementById("qq").value;
varurl="demo2.asp?qq="+escape(phone);
xmlHttp.open("GET",url,true);
xmlHttp.onreadystatechange=updatePage;
xmlHttp.send(null);
}
functionupdatePage(){
if(xmlHttp.readyState==4){
if(xmlHttp.status==200){
varresponse=xmlHttp.responseText.split("|");
document.getElementById("message").innerHTML='号码是:'+response[0]+'
姓名是:'+response[1]+'
性别是:'+response[2]+'
职务是:'+response[3];
alert("响应服务完成!");
}
elseif(xmlHttp.status==404){
alert('请求的网址不存在!');
}
else{
alert('错误:错误代码为:'+xmlHttp.status);
}
}
}