获取Ajax通信对象方法

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;
}

 

posted @ 2017-05-17 21:17  十六号街  阅读(215)  评论(0编辑  收藏  举报