我正在尝试加载远程xml文件,以便我可以解析它并返回一些结果,但是这个Ajax GET请求会一直失败。在jsfiddle here上看到它。注意:如果您使用dataType: 'xml'
$(function() {
$.ajax({
type: "GET",
url: "http://ultrasoundoftheweek.com/wp-includes/wlwmanifest.xml",
dataType: 'text',
cache:'false',
success: function(data) {
alert("yes");
},
error: function(xhr, status) {
alert("no");
}
});
});