帮助将不胜感激。
这是来自 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;
});
});
});
这让我绞尽脑汁,我想替换结果,而不是在单击刷新按钮时继续添加或附加结果。
谢谢