我有一个 div “内容”,在这个 div 中我有几个 div “评论”,我每 5 秒重新加载一次 div “内容”,我想淡入每个新评论。为此,每条评论都有一个整数,所以基本上我正在做的是:我将最后一条评论的 id 保存在变量“lastComment”中,当我重新加载 div“内容” ,我正在使用 if($(".comment").attr(id) > lastComment) { alert('ok') }
但它不起作用,首先它重新加载 div,而不是直接说“好的”,我需要再等 5 秒钟,这里是我的代码:
var lastComment = $('.comment:last').attr('id');
setInterval(function()
{
$('#content').load('fullscreen.php?image='+$('.imageBig').attr('id')+' #content');
if($('.comment').attr('id') > lastComment){
alert('ok');
}
}, 5000);
请问有什么想法吗?