給定一個表示一組 DOM 元素的 jQuery 對象,.children()
方法允許我們在 DOM 樹中搜索這些元素的子元素,並從匹配的元素構造一個新的 jQuery 對象。 .children()
方法與.find()
的不同之處在於,.children()
僅沿 DOM 樹向下移動一個級別,而 .find()
也可以向下遍曆多個級別以選擇後代元素(孫子等)。另請注意,與大多數 jQuery 方法一樣,.children()
不返回文本節點;要獲取包含文本和注釋節點的 all
子節點,請使用 .contents()
。
.children()
方法可選擇接受與我們可以傳遞給 $()
函數的類型相同的選擇器表達式。如果提供了選擇器,則將通過測試它們是否匹配來過濾元素。
考慮一個帶有基本嵌套列表的頁麵:
<ul class="level-1">
<li class="item-i">I</li>
<li class="item-ii">II
<ul class="level-2">
<li class="item-a">A</li>
<li class="item-b">B
<ul class="level-3">
<li class="item-1">1</li>
<li class="item-2">2</li>
<li class="item-3">3</li>
</ul>
</li>
<li class="item-c">C</li>
</ul>
</li>
<li class="item-iii">III</li>
</ul>
|
如果我們從 2 級列表開始,我們可以找到它的孩子:
$( "ul.level-2" ).children().css( "background-color", "red" );
|
此調用的結果是項目 A、B 和 C 後麵的紅色背景。由於我們不提供選擇器表達式,因此所有子項都是返回的 jQuery 對象的一部分。如果我們提供了一項,則隻會包括這三項中匹配的項。
找到被點擊元素的所有子元素。
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>children demo</title>
<style>
body {
font-size: 16px;
font-weight: bolder;
}
div {
width: 130px;
height: 82px;
margin: 10px;
float: left;
border: 1px solid blue;
padding: 4px;
}
#container {
width: auto;
height: 105px;
margin: 0;
float: none;
border: none;
}
.hilite {
border-color: red;
}
#results {
display: block;
color: red;
}
p, span, em, a, b, button {
border: 1px solid transparent;
}
p {
margin: 10px;
}
span {
color: blue;
}
input {
width: 100px;
}
</style>
<script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
<div id="container">
<div>
<p>This <span>is the <em>way</em> we</span>
write <em>the</em> demo,</p>
</div>
<div>
<a href="#"><b>w</b>rit<b>e</b></a> the <span>demo,</span> <button>write
the</button> demo,
</div>
<div>
This <span>the way we <em>write</em> the <em>demo</em> so</span>
<input type="text" value="early"> in
</div>
<p>
<span>t</span>he <span>m</span>orning.
<span id="results">Found <span>0</span> children in <span>TAG</span>.</span>
</p>
</div>
<script>
$( "#container" ).click(function ( event ) {
$( "*" ).removeClass( "hilite" );
var kids = $( event.target ).children();
var len = kids.addClass( "hilite" ).length;
$( "#results span" ).first().text( len );
$( "#results span" ).last().text( event.target.tagName );
event.preventDefault();
});
</script>
</body>
</html>
|
演示:
找到每個 div 的所有孩子。
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>children demo</title>
<style>
body {
font-size: 16px;
font-weight: bolder;
}
span {
color: blue;
}
p {
margin: 5px 0;
}
</style>
<script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
<p>Hello (this is a paragraph)</p>
<div><span>Hello Again (this span is a child of the a div)</span></div>
<p>And <span>Again</span> (in another paragraph)</p>
<div>And One Last <span>Time</span> (most text directly in a div)</div>
<script>
$( "div" ).children().css( "border-bottom", "3px double red" );
</script>
</body>
</html>
|
演示:
查找每個 div 的類 "selected" 的所有孩子。
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>children demo</title>
<style>
body {
font-size: 16px;
font-weight: bolder;
}
p {
margin: 5px 0;
}
</style>
<script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
<div>
<span>Hello</span>
<p class="selected">Hello Again</p>
<div class="selected">And Again</div>
<p>And One Last Time</p>
</div>
<script>
$( "div" ).children( ".selected" ).css( "color", "blue" );
</script>
</body>
</html>
|
演示: