首页 > 代码库 > js-ajax实现获取xmlHttp对象

js-ajax实现获取xmlHttp对象

//获取xmlHttp对象
    function createXMLHttp() {
    
        var xmlHttp;
        //对于大多数浏览器适用
        if (window.XMLHttpRequest()) {
            xmlHttp = new XMLHttpRequest();
        }
        //考虑浏览器的兼容性
        if (window.ActiveXObject) {
            xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
            if (!xmlHttp) {
                xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
            }
        }
        return xmlHttp;
    }

 

js-ajax实现获取xmlHttp对象