我正在发送 ajax 请求,并将结果附加到一个 div 上。在此附加之后,如果我想单击附加的链接(执行 jquery 单击功能),为什么单击功能不起作用?(抱歉英语不好:P)
编辑:
jQuery('.more').live("click",function() {
var ID = jQuery(this).attr("id");
if(ID) {
jQuery("#more"+ID).html('<img src="template/css/images/moreajax.gif" />');
jQuery.ajax({
type: "POST",
url: "loadmore.php",
data: "lastid="+ ID,
cache: false,
success: function(html){
$("#contentWall").append(html);
jQuery("#more"+ID).remove(); // removing old more button
}
});
} else {
jQuery(".morebox").html('The End');// no results
}
return false;
});