這裏得到外部URL JSON是我的代碼無法使用jQuery
$.ajax({
type:"GET",
url: "http://fantasy.premierleague.com/web/api/elements/100/",
success: function(data) {
alert(JSON.stringify(data));
},
error: function(jqXHR, textStatus, errorThrown) {
alert(jqXHR.status);
},
dataType: "json"
});
但是當我運行它我得到和error.The jqXHR.status is 0
,textStatus是Error
和errorThrown是No Transport
[HTTP訪問控制(CORS)](https://developer.mozilla.org/en-US/docs/HTTP/Access_control_CORS) – bfavaretto