我有这个对 xml 文件的 ajax jquery 调用:
$(document).ready(function(){
$.ajax({ type: "GET",
url: "mydata.xml",
dataType: "xml",
success: function(xml) {
//myfunct
},
error: function(xhr,textStatus,err) {
alert("readyState: " + xhr.readyState);
alert("responseText: "+ xhr.responseText);
alert("status: " + xhr.status);
alert("text status: " + textStatus);
alert("error: " + err);}
});
});
mydata.xml 位于 .js 和 .html 文件的同一文件夹中。当我用 chrome 打开 .html 时,警报说:
readyState: "4"
responseText: ""
status: "404"
text status: "error"
error: ""
我需要找出为什么ajax调用没有成功加载xml文件,
谢谢