/* ===========================================================
模块说明:对于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;
}

posted on 2012-10-02 00:35  萨迦狐  阅读(311)  评论(0编辑  收藏  举报