淡入jquery中的前置元素

时间:2011-02-19 15:47:19

标签: jquery

我有一些这样的代码:

var newrootcomment = $("<div class='comment'><div class='comment-holder'><div class='comment-body'>"+ data.message + "</div> <abbr class='timestamp' title=''></abbr><div class='aut'>" + data.author + "</div> <a href='#comment_form' class='reply' id=''>Reply</a> </div> </div>");

$('#wholecontainer').prepend(newrootcomment).hide().fadeIn(300);

基本上,我将代码添加到#wholecontainer div。但是,我想要前置代码并将其淡入视图。上面的代码在所有#wholecontainer div中消失。我怎么能真正做到这一点?

1 个答案:

答案 0 :(得分:2)

尝试

newrootcomment.prependTo($('#wholecontainer')).hide().fadeIn(300);