我在ajax请求期间收到错误“错误:访问被拒绝。”在 IE11 中。我试图通过使用window.XDomainRequest
来解决它,但它在IE11中也不可用。请帮助我。
$.ajax({
type: "GET",
cache: false,
crossDomain: false,
url: "dataFile.xml",
dataType: "xml",
success: function(xml) {
alert('success')
},
error: function(ex) {
alert(ex.statusText); //Giving error "Error: Access is denied."
}
});
答案 0 :(得分:0)
可能到现在(一年多之后)你找到了解决方案,但以防万一...... 正如其他人已经注意到你没有写到关于这个问题的足够详细信息,但是因为我刚刚遇到了类似的东西,而我正在寻找解决方案,也许这些会有所帮助:
https://davidwalsh.name/iframe-permission-denied
或者这个: