次のエラーが表示されます: Uncaught SyntaxError: Unexpected token <
Google トレンドの 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');
}
});
}