我的問題很簡單,我有一個名爲new.json的文件,我試圖使用JQuery來加載和顯示數據。我一直在寫JavaScript代碼:
$.getJSON("new.json", function(data){
// I have placed alert here previously and realized it doesn't go into here
$.each(data.streetCity, function(i,s){
alert(s);
});
});
}
和new.json數據看起來如下:
{"streetCity":
{
"1":"Abergement-Clemenciat",
"2":"Abergement-de-Varey",
"3":"Amareins"
}
};
確保'new.json'與運行生成ajax請求的JS的文件位於同一目錄中。我很肯定你也不想要'''。 –
如果沒有在本地機器上運行服務器,某些瀏覽器將不會允許Ajax無需調整設置 – charlietfl
如果您使用Chrome,可能會出現重複問題:http://stackoverflow.com/questions/2541949/problems-with-jquery-getjson-使用本地文件在chrome – apsillers