我想在表格中抓住最后一个TR的旁边.
$("#TableID tr:last")
得到最后一个,是否有某种方式我可以在那之前获得TR?
解决方法
当为eq指定负索引时,它从末尾开始向后计数.
.eq( -index )
-index An integer indicating the position of the element,counting backwards from the last element in the set.
$('#TableID tr').eq(-2)