Jquery 表 tr:odd
我有这个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试以下操作:
它使用选择器循环遍历所有表
Try the following:
It loops through all tables with selector