相容IE低版本的XMLHttpRequest物件的建立

admin發表於2017-02-10
雖然現在低版本的IE瀏覽器正在消亡,但是不可能否認現在還有一定的市場。

下面就分享一個程式碼片段,它實現了相容所有瀏覽器的建立XMLHttpRequest物件效果。

程式碼例項如下:

[JavaScript] 純文字檢視 複製程式碼
var xmlhttp;
if (window.XMLHttpRequest) {
  xmlhttp = new XMLHttpRequest();
}
else {
  xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function () {
  if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
    document.getElementById("show").innerHTML = xmlhttp.responseText;
  }
}

相關文章