Jquery 表 tr:odd

发布于 2024-11-16 21:45:05 字数 213 浏览 2 评论 0原文

我有这个js代码:

$(".main-vervolg .right .bottom .panes table.grey tbody tr:odd").css("background-color", "#f8f8f8");

它工作正常,但是当我有两个单独的灰色班级的桌子时,他在第二张桌子上进一步计数,但我希望他能重新开始。

我该怎么做?

I have this js code:

$(".main-vervolg .right .bottom .panes table.grey tbody tr:odd").css("background-color", "#f8f8f8");

And it is working fine but when I have 2 separated tables with the class grey he is counting further in the second table but I want that he will starts again.

How can I do this?

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

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

发布评论

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

评论(1

下雨或天晴 2024-11-23 21:45:05

尝试以下操作:

$('.main-vervolg .right .bottom .panes table.grey').each(function() {
  $('tbody tr:odd', this).css("background-color", "#f8f8f8");
});

它使用选择器循环遍历所有表

Try the following:

$('.main-vervolg .right .bottom .panes table.grey').each(function() {
  $('tbody tr:odd', this).css("background-color", "#f8f8f8");
});

It loops through all tables with selector

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