js相容所有主流瀏覽器建立XMLhttpRequest物件例項程式碼

admin發表於2017-03-20

下面分享一段利用javascript建立XMLhttpRequest物件的程式碼例項,並且能夠相容IE6瀏覽器。

程式碼如下:

[JavaScript] 純文字檢視 複製程式碼
var xmlHttp;
function createXmlHttpRequest(){
  if(window.XMLHttpRequest){
    xmlHttp=new XMLHttpRequest();
    if(xmlHttp.overrideMimeType){
      xmlHttp.overrideMimeType("text/xml");
    }
  }
  else if(window.ActiveXObject){
    try{
      xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");   
    }
    catch(e){
      xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");   
    }
  }
  if(!xmlHttp){
    alert("你的瀏覽器不支援建立XMLhttpRequest物件");
  }
  return xmlHttp;
}

相關文章