码迷,mamicode.com
首页 > Web开发 > 详细

XMLHttpRequest对象

时间:2014-11-05 12:26:31      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   ar   os   sp   strong   

创建XMLHttpRequest对象

new ActiveXObject("Microsoft.XMLHTTP");(IE)

new XMLHttpRequest();(非IE版本)

 1 var xmlhttp; 
 2 function createXMLHTTPRequest(){ 
 3     if(window.ActiveXObject){ // 判断是否支持ActiveX控件 
 4         xmlhttp = new ActiveObject("Microsoft.XMLHTTP");
 5     } else if(window.XMLHTTPRequest){
 6         xmlhttp = new XMLHTTPRequest(); 
 7     } 
 8 } 
 9  
10     

区别IE6、IE7、IE8之间的方法: 

 1 var isIE=!!window.ActiveXObject; 
 2 var isIE6=isIE&&!window.XMLHttpRequest; 
 3 var isIE8=isIE&&!!document.documentMode; 
 4 var isIE7=isIE&&!isIE6&&!isIE8; 
 5 if (isIE){ 
 6     if (isIE6){ 
 7         alert(”ie6″); 
 8     }else if (isIE8){ 
 9         alert(”ie8″); 
10     }else if (isIE7){ 
11         alert(”ie7″); 
12     } 
13 }     

 

XMLHttpRequest对象

标签:style   blog   http   io   color   ar   os   sp   strong   

原文地址:http://www.cnblogs.com/derchxi/p/4075716.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!