0
我嘗試讀取這個腳本外部JSON文件:的getJSON使用外部網址
$.getJSON('http://www.earthquake.usgs.gov/earthquakes/feed/geojson/1.0/hour',function(json) {
//$.getJSON('hour',function(json) {
$.each(json.features, function(i, item){
alert(item.properties.mag);
});
});
當我使用的外部URL,這個腳本不工作,但是,當我使用本地小時文件(我從外部網址複製並粘貼)此腳本正常工作。爲什麼?
[相同來源政策](http://en.wikipedia.org/wiki/Same_origin_policy)。 – undefined 2013-04-05 01:10:38
跨源限制。瀏覽器不會讓你發送這樣的請求。 – Blender 2013-04-05 01:10:45
你好Blender,有沒有什麼辦法從該網址獲取JSON字符串? – user1013213 2013-04-05 01:12:24