首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > XML SOAP >

不同浏览器创造XMLHttpRequest对象

2013-10-23 
不同浏览器创建XMLHttpRequest对象function getXmlHttpRequest(){var xmlHttpRequesttry{xmlHttpRequest

不同浏览器创建XMLHttpRequest对象
function getXmlHttpRequest(){
     var xmlHttpRequest;
     try{
         xmlHttpRequest = new XMLHttpRequest();
     }catch(e){
         try{
              // Internet  Explorer
              xmlHttpRequest = new ActiveXObject("Msxml2.XMLHTTp");
         }catch(e){
              try{
                   // Internet  Explorer
                   xmlHttpRequest = new ActiveXObject("Microsoft".XMLHTTP);
              }catch(e){
              }
         }
     }
      return xmlHttpRequest;
}

热点排行