这就是我在表中添加新行的方法: -
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'> </td><td colspan='15'>" + html + "</td></tr>" ).slideDown('slow');
} );
}
我可以添加新的行,但使用 slideDown 没有效果。
答案 0 :(得分:6)
如果你有JQuery 1.3.2,你可以这样做:
$("<your row html>").hide().insertAfter($(this).parent().parent()).slideDown('slow');