我想用 google api 阅读转换为 json 格式的 rss 提要;我已经放了一些警报,但是当我运行我的页面时我看不到它们!为什么 ?
这是我的 jQuery 代码:
function getFeed(url){
$('#screen #content').html("");
$.ajax({
url: 'https://ajax.googleapis.com/ajax/services/feed/load?v=1.0&q='+url,
crossDomain: true,
dataType: 'json',
success: function(data) {
alert(3);
$.each(data.entries, function(i,results){
alert(1);
});
}
});
}
getFeed('http://www.nytimes.com/services/xml/rss/nyt/Science.xml');
谢谢 !