注册 登录
编程论坛 jQuery论坛

xmlhttp在非IE8浏览器里一闪而过

crecre 发布于 2015-08-02 18:18, 4275 次点击
xmlhttp在非IE8浏览器里一闪而过,请问有怎么解决?

xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
var xmrq=new XMLHttpRequest;

这几种方法都试了不行
1 回复
#2
冰镇柠檬汁儿2015-09-11 10:24
var xhr = function () {
        try { return new XMLHttpRequest(); } catch (e) {
            try { return new ActiveXObject('Microsoft.XMLHTTP'); } catch (e) {
                try { return new ActiveXObject('Msxml2.XMLHTTP'); } catch (e) { }
            }
        };
    }();
1