1

我正在尝试通过使用向 div 添加替代行颜色nth-child(odd)

我需要为具有类名的 div 添加替代颜色,alternative_cls而不是为具有不同类名的 div 添加替代颜色。

但问题是它没有跳过具有不同类名的 div,替代颜色正在应用,包括名为 div 的不同类。

这是代码小提琴

我想要的是

在此处输入图像描述

4

4 回答 4

13

你去http://jsfiddle.net/Dfy59/6/

解释:

根据定义,一个 CSSn-th:child选择器

匹配其父元素的第 n 个子元素,无论其类型如何。

因此,让我们以您的代码为例(并首先删除 no_bg 节点):

.alternative_cls:nth-child(odd){
    background:#ccc;
}

像这样应用:

<div class="alternative_cls"> <!-- alternative_cls(n)=1, odd so apply = (grey) -->
    ssf
</div>
<div class="alternative_cls"> <!-- alternative_cls(n)=2, even so don't apply = (transparent) -->
    ssf
</div>
<div class="alternative_cls"> <!-- alternative_cls(n)=3, odd so apply = (grey)-->
    ssf
</div>
<div class="alternative_cls"> <!-- alternative_cls(n)=4, even so don't apply = (transparent) -->
    ssf
</div>
..
etc

当您在其间插入具有不同类的 div 时会发生混淆,当这种情况发生时,css 仍将入侵者 div 视为 的兄弟.alternative_cls,但随后不会将 css 应用于它:

<div class="alternative_cls">  <!-- alternative_cls(n)=1, odd so apply = (grey) -->
    ssf
</div>
<div class="no_bg">  <!--alternative_cls(n)=2, but don't apply alternative_cls, just apply no_bg = (pink) -->
    ssf
</div>
<div class="alternative_cls">  <!-- n=3, odd so apply = (grey) NOTE: you'd expect the nth-child selector to skip the last node.. but it didn't, which caused the confusion -->
    ssf
</div>
<div class="alternative_cls"> <!-- n=2, even so don't apply = (transparent) -->
    ssf
</div>
<div class="alternative_cls">  <!-- n=3, odd so apply = (grey)-->
    ssf
</div>
<div class="alternative_cls">  <!-- n=4, even so don't apply = (transparent) -->
    ssf
</div>

我知道这一点的方法是查看我的 chrome 开发工具并使用 jquery 选择器:

$('.alternative_cls:nth-child(1)')

返回

[<div class="alternative_cls">
    ssf
</div>]

但是(这是违反直觉的部分

$('.alternative_cls:nth-child(2)')

返回

[]

您希望此选择器在 no_bg div 之后立即返回节点。但事实并非如此!

继续..

 $('.alternative_cls:nth-child(3)')

返回

[<div class="alternative_cls">
    ssf
</div>]

(我建议你自己试试这个概念)

所以要解决这个问题,您只需将 css 设置为

.alternative_cls{
    width:100%;
    height:60px
}
.alternative_cls:nth-child(1), .alternative_cls:nth-child(even){
    background:#ccc;
}
.no_bg{
     width:100%;
    height:60px;
    background:#f8d6d6
}

这发生了

<div class="alternative_cls">  <!-- n=1, apply the nth-child(1) rule = (grey) -->
    ssf
</div>
<div class="no_bg">   <!--alternative_cls(n)=2, but don't apply alternative_cls, just apply no_bg = (pink) -->
    ssf
</div>
<div class="alternative_cls">  <!-- n=3, odd, so don't apply any rule = (transparent)-->
    ssf
</div>
<div class="alternative_cls"> <!-- n=2, even so apply the nth-child(even) rule = (grey) -->
    ssf
</div>
<div class="alternative_cls">  <!-- n=3, odd, so don't apply any rule = (transparent)-->
    ssf
</div>
<div class="alternative_cls">  <!-- n=4, even so apply the nth-child(even) rule = (grey) -->
    ssf
</div>

我希望这清楚.. 所以有了这些知识,你可以继续使用第 n 个子选择器,你只需要考虑这个特殊性

于 2013-02-28T06:36:36.407 回答
3

这是否适合您的需求?:

.alternative_cls:first-child,
.alternative_cls:nth-child(2n){
  background:#ccc;
}

jsFiddle

于 2013-02-28T06:35:32.890 回答
1

我已将 .no_bg div 移至 .alternative_cls,现在它工作正常。

<div class="alternative_cls">
    ssf
    <div class="no_bg">
    ssf
</div>
</div>
<div class="alternative_cls">
    ssf
</div>
<div class="alternative_cls">
    ssf
</div>
<div class="alternative_cls">
    ssf
</div>
<div class="alternative_cls">
    ssf
</div>

演示

于 2013-02-28T10:01:44.063 回答
0

正如其他答案中已经说过的那样,第 n 个子选择器会计算子代数,仅此而已;你可以做任何事情来改变它。如前所述,您可以将导致问题的 div 放在第一级子级之外。

如果这是一个问题,另一种方法是将该元素更改为另一种不是div的类型。然后,您可以使用仅计算 div的 div:nth-of-type(even)

另一种方式是,您需要以某种方式更改您的 DOM。

于 2013-03-03T18:07:36.840 回答