日期:2014-05-16  浏览次数:20452 次

jquery选取table单元格
想选择mytable最后一行,但最后一行第一列的除外.
下面的两种方法怎么都不行,正确的应该是怎么改呢???
#mytable :last-child td:not(:first)
#mytable :last-child td:lt(0)

------解决方案--------------------
#mytable tr:last-child//最后一行
"#mytable tr:last-child td:not(:first-child)"//最后一行除去第一个但是默认是第二个很奇怪