javascript 实现ajax (ff,chrome)

 
  1. var xmlHttpRequest = null
  2. if(window.XMLHttpRequest){ //Mozilla, Safari, IE7  
  3.     xmlHttpRequest =  new window.XMLHttpRequest(); 
  4.  
  5.     if(!window.ActiveXObject){ // Mozilla, Safari,  
  6.         /** 
  7.         readystate 5种状态 
  8.         0 (未初始化) 对象已建立,但是尚未初始化(尚未调用open方法)  
  9.         1 (初始化) 对象已建立,尚未调用send方法  
  10.         2 (发送数据) send方法已调用,但是当前的状态及http头未知  
  11.         3 (数据传送中) 已接收部分数据,因为响应及http头不全,这时通过responseBody和responseText获取部分数据会出现错误,  
  12.         4 (完成) 数据接收完毕,此时可以通过通过responseXml和responseText获取完整的回应数据。 
  13.         **/ 
  14.         //建立对象 
  15.          xmlHttpRequest.open('GET','http://localhost:8080/ajax/AjaxServlet',true);     
  16.         //发送 
  17.          xmlHttpRequest.send(null); 
  18.          //定义回调函数 
  19.          xmlHttpRequest.onreadystatechange = callback
  20.           
  21.     }else{ 
  22.         //IE7 
  23.         xmlHttpRequest = new ActiveXObject("Microsoft.XMLHTTP"); 
  24.  
  25.     }  
  26. }else {  
  27.     //IE6 
  28. }  
  29. function callback(){ 
  30.     console.log('readyState:'+xmlHttpRequest.readyState); 
  31.     if(xmlHttpRequest.readyState == 4){ 
  32.         if(xmlHttpRequest.status == 200){ 
  33.             alert(xmlHttpRequest.responseText); 
  34.         } 
  35.          
  36.     } 
  37. };