jquery:在表中替代行颜色,除了带有类的单元格以保持背景颜色
我是 jquery 新手。我的代码中有这样的内容:
$("tbody tr:odd ").addClass("alt");
使用 css:
tbody tr.alt td {
background-color: #e6EEEE;
}
我在表中有一个单元格
<td class="coloron">
现在,每隔一行命令都会覆盖我的 class="coloron"。
如何在每隔一行着色的同时保持单元格的独特颜色?
I am new to jquery. I have this in my code:
$("tbody tr:odd ").addClass("alt");
with css:
tbody tr.alt td {
background-color: #e6EEEE;
}
I have a cell in table with
<td class="coloron">
Right now, the every other row command is over riding my class="coloron".
How can I maintain my cell unique colour while having every other row colouring?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
定义样式,以便稍后在样式表中定义您的唯一颜色,如下所示:
如果一行有多个类,则在样式规则中给出相同级别的特异性,即 CSS 中最后定义的一个获胜。 您可以在这里看到它的工作原理。
Define the styles so that your unique color is defined later in the stylesheet, like this:
If a row has multiple classes, given the same level of specificity in the style rule, the one defined last in the CSS wins. You can see it working here.
您的
tbody tr.alt td
比更具体 >.coloron
并将覆盖它,而是执行如下操作:或者可能是这样:
Your
tbody tr.alt td
is more specific than.coloron
and will override it, instead do something like this:Or perhaps this:
使用 css
!important
:use css
!important
:尝试在 CSS 中添加以下内容:
.coloron, .coloron.alt { background:red }
try adding this in your CSS:
.coloron, .coloron.alt { background:red }