Ajax xml请求失败

时间:2014-12-13 04:05:46

标签: jquery ajax

我正在尝试加载远程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");
        }
    });
});

0 个答案:

没有答案