除第一行/最后一行/列之外的表格单元格的 JQuery 选择器

发布于 2024-09-29 09:12:22 字数 93 浏览 3 评论 0原文

有没有办法直接选择表格的所有“内部”表格单元格( 元素)(即除第一行和最后一行中的单元格之外的所有单元格)和列)使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

心如狂蝶 2024-10-06 09:12:22

您可以将 :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)')

You can use :not() with the :first-child and :last-child selectors, like this

$('table td:not(:first-child, :last-child)')

To exclude first/last rows as well:

$('table tr:not(:first-child, :last-child) td:not(:first-child, :last-child)')
薄情伤 2024-10-06 09:12:22
 $('#table_name tr td:not(:first-child)').each(function () {
                    $(this).html('<input type="text" value="' + $(this).html() + '" />');
                });

这里示例如何跳过表(table_name)的第一个 td。您可以编写 :last-child 来跳过最后一个 td 来执行某些任务。

 $('#table_name tr td:not(:first-child)').each(function () {
                    $(this).html('<input type="text" value="' + $(this).html() + '" />');
                });

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文