使用 jQuery 为表的第二列添加类

发布于 2024-12-29 08:58:09 字数 1331 浏览 0 评论 0原文

<table>
    <tr><td>aaa</td><td>ccc</td><td>aaa</td><td>aaa</td><td>bbb</td><td>aaa</td><td>aaa</td></tr>
    <tr><td>aaa</td><td>ccc</td><td>aaa</td><td>aaa</td><td>bbb</td><td>aaa</td><td>aaa</td></tr>
    <tr><td>aaa</td><td>ccc</td><td>aaa</td><td>aaa</td><td>bbb</td><td>aaa</td><td>aaa</td></tr>
    <tr><td>aaa</td><td>ccc</td><td>aaa</td><td>aaa</td><td>bbb</td><td>aaa</td><td>aaa</td></tr>
    <tr><td>aaa</td><td>ccc</td><td>aaa</td><td>aaa</td><td>bbb</td><td>aaa</td><td>aaa</td></tr>
</table>

table td {
    background-color: green;
    padding: 5px;
    border: 1px solid blue;
}

.red {
   background-color: red;
}

直播: http://jsfiddle.net/zCduV/1/

如何我可以使用 jQuery 添加类 .red 作为此表中的第二列(在本例中,这是 td 中 ccc 的位置)?

<table>
    <tr><td>aaa</td><td>ccc</td><td>aaa</td><td>aaa</td><td>bbb</td><td>aaa</td><td>aaa</td></tr>
    <tr><td>aaa</td><td>ccc</td><td>aaa</td><td>aaa</td><td>bbb</td><td>aaa</td><td>aaa</td></tr>
    <tr><td>aaa</td><td>ccc</td><td>aaa</td><td>aaa</td><td>bbb</td><td>aaa</td><td>aaa</td></tr>
    <tr><td>aaa</td><td>ccc</td><td>aaa</td><td>aaa</td><td>bbb</td><td>aaa</td><td>aaa</td></tr>
    <tr><td>aaa</td><td>ccc</td><td>aaa</td><td>aaa</td><td>bbb</td><td>aaa</td><td>aaa</td></tr>
</table>

table td {
    background-color: green;
    padding: 5px;
    border: 1px solid blue;
}

.red {
   background-color: red;
}

LIVE: http://jsfiddle.net/zCduV/1/

How can i add class .red with jQuery for second column in this table (in this example this is there where in td is ccc)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(5

不知在何时 2025-01-05 08:58:09

这也许?

// selects both table header and table data cells from the second column of the table
$('table th:nth-child(2), table td:nth-child(2)').addClass('red');

http://jsfiddle.net/tdTkQ/

This maybe?

// selects both table header and table data cells from the second column of the table
$('table th:nth-child(2), table td:nth-child(2)').addClass('red');

http://jsfiddle.net/tdTkQ/

溺ぐ爱和你が 2025-01-05 08:58:09

通过使用 jQuery nth-child 选择器:

$('td:nth-child(2)').addClass('red');

参考:http://api.jquery.com/nth -子选择器/

By using the jQuery nth-child selector:

$('td:nth-child(2)').addClass('red');

Reference: http://api.jquery.com/nth-child-selector/

如果没结果 2025-01-05 08:58:09
$('td:nth-child(2)').addClass('red');
$('td:nth-child(2)').addClass('red');
风铃鹿 2025-01-05 08:58:09

看一下 jQuery nth-child-selector。这就是您正在寻找的。

 $('td:nth-child(2)').addClass('red');

Take a look at jQuery nth-child-selector. This is what you are looking for.

 $('td:nth-child(2)').addClass('red');
风铃鹿 2025-01-05 08:58:09

此解决方案的示例

Example of this solution.

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