$(function() {
$.get('http://itunes.apple.com/cn/lookup?id=728200220', function(data) {
console.log(data);
});
})
我想从链接中获取数据,我启动了一个服务器,导致错误:
XMLHttpRequest无法加载https://itunes.apple.com/cn/lookup?id=728200220。请求的资源上没有'Access-Control-Allow-Origin'标头。因此,不允许访问源'http://localhost:8080'。
服务器支持jsonp请求,所以使用它,例如:
$.ajax({
url: 'http://itunes.apple.com/cn/lookup?id=728200220',
// The name of the callback parameter
jsonp: "callback",
// Tell jQuery we're expecting JSONP
dataType: "jsonp",
// Work with the response
success: function( response ) {
console.log( response ); // server response
}
});