我有一个ajax请求
$.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);
}
});
问题是它在 IE 8,9 中不起作用,老板建议使用 post message。使这个请求在 IE 8,9 中起作用的方法是什么?