有没有办法使用jquery选择器表达式直接选择表的所有“内部”表格单元格(< td>元素)(即除了第一行和最后一行和列中的单元格之外的所有单元格)?
解决方法
您可以将
:not()
与
:first-child
和
:last-child
选择器一起使用,如下所示
$('table td:not(:first-child,:last-child)')
要排除第一行/最后一行:
$('table tr:not(:first-child,:last-child) td:not(:first-child,:last-child)')