由于某些原因,这不起作用,我试图只让下一个内容淡入,而不是每次都有新内容淡入...
$(document).ready(function(){
$(".load_more").click(function (){
$('.load_more').html('<img src="images/ajax-loader.gif" />');
$.ajax({
url: "loadmore.php?id=" + $(".ad_display:last").attr("id"),
success: function(html){
var newPost = $(html);
if(newPost.length){
newPost.hide().appendTo(".main_page").fadeIn("slow");
$('.load_more').html('Load More');
}else{
$('.load_more').replaceWith('There are no more posts.');
}
}
});
});
});
如何将“html”视为jquery对象(DOM),然后将其设为动画?
非常感谢任何帮助!
答案 0 :(得分:0)
根据您的要求,尝试使用以下命令使html参数显示其值:
console.log(html);
或
alert(html);