幫助將不勝感激。用getJson替換而不是appendto
這是從jQuery網站
<button id="refresh">refresh</button>
<div id="images"></div>
$("#refresh").click(function(){
$.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?jsoncallback=?",
{
tags: "vw beetle",
tagmode: "any",
format: "json"
},
function(data) {
$.each(data.items, function(i, item) {
$("<img/>").attr("src", item.media.m).empty().appendTo("#images");
if (i == 3)
return false;
});
});
});
這是傷透我的大腦的代碼,我要替換的結果,而不是繼續增加或單擊刷新按鈕時追加到的結果。
謝謝
非常感謝你,它的工作 – Jason