通用js模块06:ajaxutils.js

/* ===========================================================
模块说明:对于Ajax操作的一些补充功能
charset:gb2312
调用模块:
搜集整理:sagahu@163.com
最后修订:2011-12-06
*/

// 根据实际的浏览器类型,智能创建XMLHttpRequest对象。
function createXMLHttpRequest() {
    var req;
    if (window.XMLHttpRequest) { // code for Firefox, Opera, IE7, etc.
        req = new XMLHttpRequest();
    }
    else if (window.ActiveXObject) { // code for IE6, IE5
        req = new ActiveXObject("Microsoft.XMLHTTP");
    }
    if (req == null)
        throw new Error("XMLHttpRequest is not installed on your browser.");
    return req;
}

原文地址:https://www.cnblogs.com/sagahu/p/2710035.html