我想附加一行应该是表的最后一行。在我的代码中,它似乎在第一次动态添加行时起作用。但是当添加其他行时,它不会成为最后一行。
我总是希望“subtot”行成为最后一行,但是当我附加其他行时,它不会变成最后一行。即使附加了其他行,它也会保持在原来的位置。
//make sure that subtot is only appended once
if($('.subtot').length < 1){
$('<tr class = "subtot"><td></td><td></td><td></td><td>test</td></tr>').insertAfter('table tbody>tr:last');
}
你必须向下滚动一下jsfiddle才能看到代码。
谢谢