我的 JSON 有问题吗?
http://codepen.io/anon/pen/Ieyvl
var url = "http://x.com/json.js";
$.getJSON(url, function(response){
alert("worked!");
alert(response);
});
如果它是一个“跨域”问题,那么为什么会这样呢?
http://codepen.io/anon/pen/BHshC
var url = "http://gdata.youtube.com/feeds/api/playlists/PL3E245DF445E37F50?v=2&alt=jsonc";
$.getJSON(url, function(response){
alert("worked!");
alert(response);
});