ie7+内嵌XMLHttpRequest对象

来源:互联网 发布:unity3d 太空舱 编辑:程序博客网 时间:2024/05/16 16:04
在ie7+中,使用的已经是内嵌的XMLHttpRequest对象。 

if (window.XMLHttpRequest) 

         var oReq = new XMLHttpRequest(); 
         oReq.open("GET", "http://localhost/test.xml"); 
         oReq.send(); 
         alert(oReq.statusText); 
}
原创粉丝点击