:first-child
如果某个元素是父元素中的第一个元素,那么他就会被选中。
-
1.1.4 新增:first-child
注意,:first 只匹配一个元素,就是第一个元素,而 :first-child
则能匹配多个元素:即每个父元素中的第一个。这等价于 :nth-child(1)
。
示例:
给每个 div 中第一个 span 增加下划线,并增加一个鼠标悬停效果。
<!DOCTYPE html>
<html>
<head>
<style>
span { color:#008; }
span.sogreen { color:green; font-weight: bolder; }
</style>
<script src="jquery.min.js"></script>
</head>
<body>
<div>
<span>John,</span>
<span>Karl,</span>
<span>Brandon</span>
</div>
<div>
<span>Glen,</span>
<span>Tane,</span>
<span>Ralph</span>
</div>
<script>
$("div span:first-child")
.css("text-decoration", "underline")
.hover(function () {
$(this).addClass("sogreen");
}, function () {
$(this).removeClass("sogreen");
});
</script>
</body>
</html>