您好我還在學習這個東西JSON ...用AJAX解析有效的JSON?
我想我找到了一個有效的JSON:
http://www.nfl.com/liveupdate/scorestrip/ss.json
問題是我不知道我怎麼能分析該使用AJAX?
這可能嗎?我也聽說過MooTools有什麼區別?
而且,這裏是一些代碼,我剛纔玩弄但似乎並沒有工作:
$.ajax({
type: "GET",
url: "http://www.nfl.com/liveupdate/scorestrip/ss.json",
dataType: "json",
success: function(data) {
// Interpret response
for (var i = 0; i < data.gms.length; i++) {
document.write("Day: " + data.gms[i][0]);
document.write("<br/>");
document.write("Time: " + data.gms[i][1]);
document.write("<br/><br/>");
}
}
});
您提供的代碼看起來很像jQuery,而不是mootools – knittl
哦,對不起,它是JQuery ...但在這個問題上,我想我會問什麼mootools,因爲我聽說過用mootools做這個 – allencoded
我知道它不能使用隱藏的iFrame並從中解析數據? – allencoded