1

如何使用 XDomainRequest 更正重写 Ajax 请求以使其在 IE 8 + 中工作?

$.ajax({
    type: "GET",
    url: url,
    success: function(xml) {
        $('.post-msg').append(processXml(xml, config));
    },
    error: function(jqXhr, textStatus, errorThrown) {
        var errorMsg = "Request on url: " + url + " failed: " + textStatus + " error:" + errorThrown;
        alert(errorMsg);
    }
});
4

1 回答 1

5

使用这个插件来支持 IE8-9 Xdomain。

https://github.com/MoonScript/jQuery-ajaxTransport-XDomainRequest

于 2013-07-09T14:09:50.387 回答