我试图搞定谷歌hot trend 使用jquery的数据。我写了一个代码,但它返回错误状态代码0你可以帮我找到它的错误吗?
这是我的代码
function topSearchesRss() {
var url = 'http://www.google.com/trends/hottrends/atom/hourly';
$.ajax({ type: 'GET',
url: url,
datatype: 'xml',
error: function (err) { alert(err.status);},
success: function (xml) { alert('sucesss'); }
});
}