给定一个表示一组 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>
|
演示: