我正在尝试使用jquery解析此xml:https://feed.podbean.com/talkloudradio.com/feed.xml
var url = https://feed.podbean.com/talkloudradio.com/feed.xml
$.ajax({
url: url,
dataType: "json",
cache: false
}).done(function( d ) {
console.log($.parseXML( d.contents ))
}).fail(function(jqXHR, textStatus, errorThrown) {
console.log(jqXHR, textStatus, errorThrown);
});
我在使用parseXML时遇到错误:
Uncaught Error: Invalid XML: HTTP/1.1 200 OK
如果我尝试以此直接在完成的函数中搜索,它将找不到任何内容:
$(d).find("item").each(function(){
console.log($(this))
})
问题是什么,它是有效的rss吗?