什么是 XMLHttpRequest 对象?
XMLHttpRequest 对象用于在后台与服务器交换数据。XMLHttpRequest 对象是开发者的梦想,因为您能够:在不重新加载页面的情况下更新网页在页面已加载后从服务器请求数据在页面已加载后从服务器接收数据在后台向服务器发送数据所有现代的浏览器都支持 XMLHttpRequest 对象。1、如何创建兼容良好的XMLHttpRequest 对象:
function createXmlRequest(){ var xmlHttp; try{ xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); }catch(e){ xmlHttp=new ActiveXObjec("Microsoft.XMLHTTP"); // 老版本的 Internet Explorer (IE5 和 IE6) }if(!xmlHttp && typeof XMLHttpRequest!='undefined'){ try{ xmlHttp=new XMLHttpRequest(); }catch(e){ xmlHttp=false; } } return xmlHttp;}
2、如何使用?以Struts为例:
var xhr = createXmlRequest();var url = "checkImsiJt.do?startid="+startid+"&endid="+endid;xhr.open("GET",url,true);xhr.onreadystatechange = function(){ if (xhr.readyState == 4 && xhr.status == 200) { var msg = xhr.responseText; // TOOD 响应后台输出结果 }};xhr.send(null);
Struts的处理请求:
// 后台输出:String result = "xxxx";response.setContentType("text/html;charset=GBK");response.getWriter().write(result);