欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

jquery :first-child选择器在这种情况下为什么会无效呢?

程序员文章站 2022-05-08 18:14:02
...
为什么多了那个h2标签,jQuery中的first-child就无法生效呢?见下图所示。谢谢了
<html>
<head>
<script type="text/javascript" src="/jquery/jquery.js">
</script>
<script type="text/javascript"> $(document).ready(function(){
$('div p:first-child').css('backgroundColor', '#555');
});
</script>	
</head>
<body>
<html>
<div>
    <h2>hello</h2>
    <p>A</p>
    <p>B</p>
    <p>C</p>
    </div>
    <div>
    <p>D</p>
    <p>E</p>
    <p>F</p></div>
    <div>
    <p>G</p>
    <p>H</p>
    <p>I</p>
    </div>
    </body>
    </html>

jquery :first-child选择器在这种情况下为什么会无效呢?

first-child只会遍历到第一个子元素

因第一个div里,没有第一个且p的元素

$("div > p").first()

但是选择的是p标签,并不是h2啊?

$("div > p").first()

不行。只有A有效果,D和G没有效果。

nth-of-type

以上就是jquery :first-child选择器在这种情况下为什么会无效呢?的详细内容,更多请关注其它相关文章!