【jQuery :最后一个子元素选择器用法介绍】它是一个jQuery选择器用于选择每个元素最后一个孩子其父母.
语法如下:
$(":last-child")
返回值:它选择并返回其父级的最后一个子级元素。
示例1:
<
!DOCTYPE html>
<
html >
<
h1 >
<
center >
Geeks
<
/ center >
<
/ h1 >
<
head >
<
script src =
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js" >
<
/ script >
<
script >
$(document).ready(function() {
$("p:last-child").css(
"background-color", "green");
});
<
/ script >
<
/ head >
<
body >
<
div >
<
p >
Geeks for Geeks<
/ p >
<
p >
jQuery<
/ p >
<
p >
Last Child Selector<
/ p >
<
/ div >
<
/ body >
<
/ html >
输出如下:
文章图片
示例2:
<
!DOCTYPE html>
<
html >
<
h1 >
<
center >
Geeks
<
/ center >
<
/ h1 >
<
head >
<
script src =
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js" >
<
/ script >
<
script >
$(document).ready(function() {
$("p:last-child").css(
"background-color", "green");
});
<
/ script >
<
/ head >
<
body >
<
div style = "border:1px solid;
" >
<
p >
Geeks for Geeks<
/ p >
<
p >
jQuery<
/ p >
<
/ div >
<
br >
<
div style = "border:1px solid;
" >
<
p >
Geeks for Geeks<
/ p >
<
p >
jQuery<
/ p >
<
p >
Last Child Selector<
/ p >
<
/ div >
<
p >
jQuery:Last Child Selector<
/ p >
<
/ body >
<
/ html >
输出如下:
文章图片
推荐阅读
- Python MongoDB –查找数据用法介绍
- 优先队列(priority queue)和堆(heap)详解(二叉堆、d-堆、左式堆、斜堆和二项堆)
- vue filters过滤器的理解和使用
- vue各种属性的意义详细分析
- 运行gulp错误gulp[22202]src node_contextify.cc 626 static void
- 移动端web app开发框架MUI的使用及注意事项
- ES6默认参数和[…]展开spread操作符、剩余rest操作符
- ES6块级作用域let及解构数组和解构对象的基本语法
- ES6箭头函数及对象表达式