当用户将新评论(divCommentHtml)添加到评论列表(divComments)时,我想突出显示它几秒钟并使其消失。你怎么用jQuery做到这一点?这似乎不起作用:
$('#divComments').prepend($divCommentHtml).effect("highlight", {}, 2000);
谢谢!
最佳答案
使用prepend
,您可以在#divComments
元素上运行UI效果。
试试这个(假设$divCommentHtml
是一个jQuery对象)
$divCommentHtml.prependTo('#divComments').effect('highlight', {}, 2000);
也许
$('#divComments').prepend($divCommentHtml)
.find(':first').effect('highlight', {}, 2000);
关于javascript - 使用jQuery突出显示新添加的项目,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4161783/