如何使用jQuery在动画表中添加新行?

时间:2009-12-15 14:15:56

标签: jquery html

这就是我在表中添加新行的方法: -

function expandAll(){
        $('#myTableID>tbody>tr>td:nth-child(2)>div:nth-child(2)').each ( function() {
            html = $(this).html();
// Is it possible to add this Row with animation
            $(this).parent().parent().after( "<tr><td colspan='2'>&nbsp;</td><td colspan='15'>" + html + "</td></tr>" ).slideDown('slow');          
        } );
    }

我可以添加新的行,但使用 slideDown 没有效果。

1 个答案:

答案 0 :(得分:6)

如果你有JQuery 1.3.2,你可以这样做:

$("<your row html>").hide().insertAfter($(this).parent().parent()).slideDown('slow');