使用jquery如何找到表的最后一行之前的行?
$(‘#table tr:last’)会给我最后一行,但是如何访问在最后一行之前的行?
谢谢
$('#table tr').eq(-2)
要么
$('#table tr:last').prev()
$('#table tr').eq($('#table tr').length - 2)
Demo for the three solutions.