ajax

Ajax

XMLHttpRequest对象

var xhr;
if(window.XMLHttpRequest){
   //code for IE7+,firfox,chrome,opera,safari
   xhr = new XMLHttpResquest();
}else {
   //code for IE6,IE5
   xhr = new ActiveXObject("Microsoft.XMLHTTP");
}

向服务器发送GET请求

xhr.open("GET","test1.php?t="+Math.random(),true);//true异步进行/false同步进行
xhr.send();

向服务器发送POST请求

使用setRequestHeader()来添加HTTP头,然后send()方法中规定希望发送的数据

xhr.open("POST","test.php",true);
xhr.setRequestHeader("content-type","application/x-www-form-urlencoded");
xhr.send("fname = bill&lname = gates");

XMLHttpRequest的三个重要属性:

1.readyState属性

readyState存有XMLHttpRequest的状态属性,从0到4发生变化。

0请求未初始化

1服务器连接已建立

2请求已接收

3请求处理中

4请求已完成,且响应已就绪

2.onreadystatechange

每当readyState发生改变时就会触发onreadystatechange事件

3.Status

200:OK

404:未找到页面

当readyState=4并且status=200时,表示响应已就绪

xhr.onreadystatechange = function(){
   if(this.readyState == 4 && this.status == 200){
      //执行成功
   }
}

相关推荐