我对以下 URL 进行 ajax 调用
http://dailymed.nlm.nih.gov/dailymed/services/v1/drugname/sanctura%20xr/spls.json
我不断在萤火虫控制台中收到无效标签错误。这是我的ajax代码。请让我知道我哪里错了。
//Make an ajax call
$.ajax({
type:'GET',
dataType:'jsonp',
url: 'http://dailymed.nlm.nih.gov/dailymed/services/v1/drugname/sanctura/spls.json',
//crossDomain: true,
beforeSend: function(xhr) {
xhr.setRequestHeader('Access-Control-Allow-Origin: *');
},
error: function (xhr, ajaxOptions, thrownError) {
console.log('status '+xhr.status);
console.log(''+xhr.responseText);
console.log(''+ajaxOptions);
console.log(''+thrownError);
},
success: function(){
alert('success');
}
});