jQuery 多个伪类

发布于 2024-11-27 11:39:02 字数 62 浏览 3 评论 0原文

我想在表格的第一列上制作斑马效果。我如何选择 tr 的第一个 td 并对其应用 nth-child(2n) ?

I'd like to make the zebra effect on the first column of a table. How could I could select the first td of a tr and apply nth-child(2n) on it?

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

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

发布评论

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

评论(2

明天过后 2024-12-04 11:39:02

:nth-child() 伪类转到 tr:first-child 伪类转到 TD:

$('tr:nth-child(2n) td:first-child').css('background-color', '#ccc');

The :nth-child() pseudo-class goes to the tr, and the :first-child pseudo-class to the td:

$('tr:nth-child(2n) td:first-child').css('background-color', '#ccc');
一身软味 2024-12-04 11:39:02

您需要将 nth-child(2n) 添加到 中,然后使用 :first-child 仅选择第一个 <代码>。在这里查看:

http://jsfiddle.net/ajthomascouk/WtLek/

You need to add nth-child(2n) to the <tr> and then use :first-child to only select the first <td>. Check it out here:

http://jsfiddle.net/ajthomascouk/WtLek/

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