我收到错误:Uncaught SyntaxError: Unexpected token <
我只是在使用 Google Trend URL 时遇到这个问题。其他 URL 工作正常。
function ajaxfun(){
$.ajax({
type: 'GET',
url: 'http://www.google.com/trends/fetchComponent?content=1&hl=en-US&q=fever&cid=TIMESERIES_GRAPH_0&export=3&US&cat=0-45',
dataType :"jsonp",
jsonp: false,
crossDomain: true,
error: function(data) {
console.log('error', data);
},
success: function(data) {
console.log('success', data);
},
complete: function() {
console.log('done');
}
});
}