我是 RSS 解析的新手,在使用 jQuery 访问提要时遇到了麻烦。我尝试(并且想)使用$.get()
,但我得到的比这少。(这至少会触发错误。)我做错了什么?
function GetFedFeeds(){
$.ajax({
type: 'GET',
url: 'http://www.federalreserve.gov/feed/press_enforcement.xml',
dataType: 'xml',
success: function(xml){
$(xml).find('item').each( function(){
var t = $(this).find('title').text();
$('#content').append(t);
});
},
error: function() { alert('RSS Error'); }
});
}