0
我有一個web服務返回jsonp格式。這裏是代碼:jsonp通過數據循環
$(document).ready(function(){
$.getJSON("http://api.tubeupdates.com/?method=get.status&lines=central,victoria&return=name&jsonp=?",
function (result){
$.each(result.items, function(item){
$('body').append(item.response.lines[0].name);
});
}
);
});
它工作正常,如果我刪除循環但失敗與$ .each循環。 任何想法我做錯了什麼?
感謝
莫羅
JSON數據是什麼樣的?它*很重要。 – 2010-11-30 17:25:01