它是一个jQuery选择器用于选择指定类型的第一个元素。
语法如下:
$(":first")
返回值:它选择并返回第一个元素。
示例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:first").css(
"background-color", "green");
});
<
/ script >
<
/ head >
<
body >
<
p >
Geeks for Geeks<
/ p >
<
p >
jQuery<
/ p >
<
p >
First Selector<
/ p >
<
/ 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:first").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 >
First Selector<
/ p >
<
/ div >
<
p >
jQuery:First Selector<
/ p >
<
/ body >
<
/ html >
输出如下:
文章图片
【jQuery如何使用:first选择器(代码实例)】注意:上面的代码将只选择first div的第一个< p> 元素。要选择第二个div的第一个< p> 元素, 请使用:first-child选择器。
推荐阅读
- materialize CSS如何使用按钮(代码示例)
- 向量处理器中的向量指令格式
- PHP如何使用Ds Vector filter()函数(示例)
- PHP如何计算两个日期之间的工作日数()
- 算法设计(如何编写程序以反转数字())
- CSS如何使用:visited访问选择器(示例)
- 操作系统中的非连续分配详细指南
- 凯捷(Capgemini)面试体验(校园,2019)
- Win8浏览照片应用中的图片提示没有文件怎样办?