这不是跨站点请求问题,因为我的问题的大多数谷歌答案都包括在内。
尝试使用 jquery 函数 .get 和 .load 发出 ajax 请求时,我收到 xhr.status 0 och xhr.statusText“错误”。但是在 Firebug 中,请求的页面加载了 html 状态代码 200,我可以读取响应中的文本并且响应标头看起来不错。
我的代码:
function GetProjectTask(e) {
var loader = $('#' + e + 'tasks div.loader');
var content = $('#' + e + 'tasks div.content');
var img = $('#' + e + 'tasks img.collapseimg');
if (loader.html() == null || loader.html().trim() == '') {
if (content.html() == null || content.html() == '') {
img.attr('src', 'images/expanded.gif');
loader.html('<img src="images/loading.gif" alt="Wait..."> Loading support tasks');
content.load('includes/my' + e + 'tasks.php',
function (response, status, xhr) {
if (status == "error") {
var msg = "Sorry but there was an error: ";
alert(msg + xhr.status + " - " + xhr.statusText);
}
}
);
return;
}
}
content.empty();
loader.empty();
img.attr('src', 'images/collapsed.gif');
}
服务器:IIS v.7.5 Jquery:v1.6.2
有任何想法吗?