标签: jquery
我有一个标准的HTML表格。
使用jquery如何找到表格最后一行之前的行?
$('#table tr:last')会给我最后一行,但如何访问最后一行之前的行?
$('#table tr:last')
由于
答案 0 :(得分:27)
$('#table tr').eq(-2)
或
$('#table tr:last').prev()
$('#table tr').eq($('#table tr').length - 2)
Demo for the three solutions.