nth-child 与 nth-of-type 选择器的区别

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nth-child 与 nth-of-type 选择器的区别相关的知识,希望对你有一定的参考价值。

<body>
<ul>
    <div><a href=""></a></div>
    <li class="bgred"></li>
    <li class="bgred"></li><!--内容改变-->
    <li class="bgred"></li>
    <li class="bgred"></li>
    <li class="bgred"></li>
</ul>
<ul>
    <li class="bggreen"></li>
    <li class="bggreen"></li><!--内容改变-->
    <li class="bggreen"></li>
    <li class="bggreen"></li>
    <li class="bggreen"></li>
</ul>
<script type="text/javascript">
    $(function(){
        $("li:nth-of-type(2)").text("OK");
    });
</script>
</body>

  li:nth-of-type 相当于将<ul>标签中的所有<li>元素选出,再将选出的<li>元素中排在第二位的<li>选中

<body>
<ul>
    <div><a href=""></a></div>
    <li class="bgred"><a href="a"></a></li><!--内容改变-->
    <li class="bgred"><a href="b"></a></li>
    <li class="bgred"><a href="c"></a></li>
    <li class="bgred"><a href="d"></a></li>
    <li class="bgred"><a href="e"></a></li>
</ul>
<ul>
    <li class="bggreen"><a href=""></a></li>
    <li class="bggreen"></li><!--内容改变-->
    <li class="bggreen"></li>
    <li class="bggreen"></li>
    <li class="bggreen"></li>
</ul>
<script type="text/javascript">
    $(function(){
        $("li:nth-child(2)").text("OK");
    });
</script>
</body>

  li:nth-child 相当于将<ul>标签中的所有块元素选出,再将选出的块元素中排在第二位的标签为<li>的元素选中。

以上是关于nth-child 与 nth-of-type 选择器的区别的主要内容,如果未能解决你的问题,请参考以下文章

nth-child 与 nth-of-type区别

nth-child 与 nth-of-type 选择器的区别

nth-child(n) 与 nth-of-type(n)  区别

CSS选择器之:nth-child()和:nth-of-type()的使用

nth-of-type和nth-child

CSS3中:nth-child和:nth-of-type的区别深入理解