除第一行/最后一行/列之外的表格单元格的 JQuery 选择器
有没有办法直接选择表格的所有“内部”表格单元格( 元素)(即除第一行和最后一行中的单元格之外的所有单元格)和列)使用 jquery 选择器表达式?
is there a way to directly select all 'inner' table cells (<td>
elements) of a table (i.e. all cells except the ones in the first and last row and column) using a jquery selector expression?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将
:not()
与:first-child
和:last-child
选择器,如下所示要排除第一行/最后一行:
You can use
:not()
with the:first-child
and:last-child
selectors, like thisTo exclude first/last rows as well:
这里示例如何跳过表(table_name)的第一个 td。您可以编写 :last-child 来跳过最后一个 td 来执行某些任务。
Here example how to Skip 1st td of a table(table_name) .U can write :last-child to skip last td to do some task.