之前添加一行到表我有以下的HTML /腳本代碼最後一行
<script type="text/javascript">
$(function(){
$(".AddItem").click(function(){
$(this).parents('table tr:last').after('<tr><td> </td><td><input type="text" name="item[]" value=""></td></tr>');
return false;
});
});
</script>
<table>
<tr>
<td valign="top">Items <a href="#" class="AddItem"><img src="images/16/button-add.png" title="Add more Items"></a></td>
<td><input type="text" name="item[]" ></td>
</tr>
<tr>
<td>Count: </td>
<td>10</td>
</tr>
</table>
這將增加該行下方的一行添加按鈕。我需要在頁腳行(Count)上方的表格底部添加一行。 我應該使用什麼選擇器?
請注意this question不符合我的要求,它會選擇最後一行。
您應該創建的小提琴 – Satpal
可能的複製[jQuery的:在第二使用appendTo表的最後一行(http://stackoverflow.com/questions/1645174/ jquery-using-appendto-second-to-last-row-row-of-table) – raghul