这是我使用的代码如下:
我正在使用 IE9,无法在“网络”选项卡中看到正在发送的请求。我确实在 JSP 中设置了 Access-Control 标头:
<% response.setHeader("Access-Control-Allow-Origin", "*");%>
从 JSP 获取 AJAX HTML 内容的代码:
if ($.browser.msie && window.XDomainRequest) {
var xdr = new window.XDomainRequest();
xdr.open("GET", "http://dev01.org:11110/crs/qw/qw.jsp?&_=" + Math.random());
xdr.contentType = "text/plain";
xdr.timeout = 5000;
xdr.onerror = function () {
console.log('we have an error!');
}
xdr.onprogress = function () {
console.log('this sucks!');
};
xdr.ontimeout = function () {
console.log('it timed out!');
};
xdr.onopen = function () {
console.log('we open the xdomainrequest');
};
xdr.onload = function() {
alert(xdr.responseText);
};
xdr.send(null);
} else { ...... }
我收到拒绝访问错误。任何帮助将非常感激!