📅  最后修改于: 2023-12-03 15:32:11.901000             🧑  作者: Mango
在jQuery中,:last-child
选择器用于选取某个元素的最后一个子元素。具体来说,它选择了所有作为其父元素的最后一个子元素的元素。
这个选择器可以与其他选择器组合使用,例如element:last-child选择器、.class:last-child选择器、#id:last-child选择器等。
:last-child
选择器的基本语法如下:
$(":last-child")
<ul>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
<li>List item 4</li>
<li>List item 5</li>
<li>List item 6</li>
</ul>
// 选择最后一个<li>元素
$("li:last-child").css("background-color", "yellow");
如上所示,以上代码将选择上面示例中的最后一个li
元素,并将其背景颜色设置为黄色。
以下实例演示了 :last-child
选择器与一些其他选择器组合。
$("p:last-child").css("background-color", "yellow");
class
属性组合使用$(".example:last-child").css("background-color", "yellow");
id
属性组合使用$("#example:last-child").css("background-color", "yellow");
当使用 :last-child
选择器时,要确保要选择的元素是其父元素的最后一个子元素。
在使用 :last-child
选择器时,需要在其前面添加一个冒号(:
)。
与大多数jQuery选择器一样, :last-child
选择器也不区分大小写。