:first-of-type选择器用于选择所有作为其父级的第一个子级(特定类型)的元素。
【jQuery如何使用:first-of-type选择器(用法示例)】语法如下:
$(":first-of-type")
以下示例说明了jQuery中的:first-of-type选择器:
范例1:本示例将其父母的第一个标题(div标签)的背景颜色更改为绿色, 将文本颜色更改为白色。
<
!DOCTYPE html>
<
html>
<
head>
<
title>
jQuery | :first-of-type Selector
<
/title>
<
script src =
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
<
/script>
<
!-- Script to use first-of-child selector -->
<
script>
$(document).ready(function() {
$("h4:first-of-type").css({
"background-color": "green", "color": "white"
});
});
<
/script>
<
style>
option {
font-weight: bold;
font-size: 25px;
color: green;
}
select {
font-weight: bold;
font-size: 25px;
color: green;
}
<
/style>
<
/head>
<
body style = "text-align:center;
width: 500px;
margin: auto">
<
h1>
jQuery | :first-of-type Selector
<
/h1>
<
div style = "border:1px solid blue;
">
<
h4>
The first heading in first div.<
/h4>
<
h4>
The last heading in first div.<
/h4>
<
/div>
<
br>
<
div style = "border:1px solid blue;
">
<
h4>
The first heading in second div.<
/h4>
<
h4>
The last heading in second div.<
/h4>
<
/div>
<
/body>
<
/html>
输出如下:
文章图片
范例2:本示例将< body> 标签的第一个标题的背景颜色更改为绿色, 将文本颜色更改为白色。
<
!DOCTYPE html>
<
html>
<
head>
<
title>
jQuery | :first-of-type Selector
<
/title>
<
script src =
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
<
/script>
<
!-- Script to use first-of-child selector -->
<
script>
$(document).ready(function() {
$("h4:first-of-type").css({
"background-color": "green", "color": "white"
});
});
<
/script>
<
style>
option {
font-weight: bold;
font-size: 25px;
color: green;
}
select {
font-weight: bold;
font-size: 25px;
color: green;
}
<
/style>
<
/head>
<
body style = "text-align:center;
width: 500px;
margin: auto">
<
h1>
jQuery | :first-of-type Selector
<
/h1>
<
h4>
The first heading in body.<
/h4>
<
h4>
The last heading in body.<
/h4>
<
/body>
<
/html>
输出如下:
文章图片
推荐阅读
- 怎么实现堆排序(详细解析和代码实现)
- HTML编辑器介绍和用法示例
- Python中的关键字用法解析和代码实例
- 操作系统中的线程简要指南
- PHP如何使用ImagickDraw point()函数(用法示例)
- PHP如何使用SplObjectStorage count()函数(用法示例)
- Veritas面试体验详细分享|S4(校园)
- PHP如何使用checkdate()函数(用法示例)
- 小白Ghost windows7系统32位旗舰版最新推荐