1. 程式人生 > >獲取Ajax通信對象方法

獲取Ajax通信對象方法

pan span logs http 方法 ajax urn fun fine

function getXHR() {
    // 該方法用於獲取Ajax通信對象
    var xhr = null;
    if (window.XMLHttpRequest != null &&
    window.XMLHttpRequest != undefined) {
    xhr = new XMLHttpRequest();
    } else {
    / 兼容早期的IE瀏覽器
    xhr = new ActiveXObject("Microsoft.XMLHTTP");
    }
    return xhr;
}

獲取Ajax通信對象方法