.children()
- .children( [selector] ) 1.0追加
- デモ
.children( [selector] ) 1.0追加
戻り値:jQuery
現在マッチしている要素の子要素を取得します。また、条件を指定して子要素をフィルタリングすることが可能です。
引数 | 説明 |
---|---|
[selector] | 更にマッチさせる要素をセレクタで指定します。 |
- .find()と違い、一つ下の階層までしか対象にしません。
- .children()はテキストノードを除外します。 テキストノードもコメントノードも対象としたい場合は.contents()を使用してください。
例えば、下記のようなコードがあった場合、
<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>
次の処理を実行すると、A,B,Cの項目の背景色が赤色になります。
$('ul.level-2').children().css('background-color', 'red');
デモ
各要素をクリックすると、その要素の子要素を赤いボーダーで囲います。
<!DOCTYPE html>
<html>
<head>
<style>
body { font-size:12px; 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 { margin:10px; border:1px solid transparent; }
span { color:blue; border:1px solid transparent; }
input { width:100px; }
em { border:1px solid transparent; }
a { border:1px solid transparent; }
b { border:1px solid transparent; }
button { border:1px solid transparent; }
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<div id="container">
<p>
<span id="results">
<span></span>タグ内に
<span>0</span>つの子要素を見つけました。
</span>
</p>
<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.
</p>
</div>
<script>
$("#container").click(function (e) {
$("*").removeClass("hilite");
var $kids = $(e.target).children();
var len = $kids.addClass("hilite").length;
$("#results span:first").text(e.target.tagName);
$("#results span:last").text(len);
e.preventDefault();
return false;
});
</script>
</body>
</html>
DIVの子要素を更にseletedクラスで絞り込んで選択し、フォント色を青に変更しています。
<!DOCTYPE html>
<html>
<head>
<style>
body { font-size:16px; font-weight:bolder; }
p { margin:5px 0; }
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<div>
<span>おはよう</span>
<p class="selected">こんにちは</p>
<div class="selected">こんばんわ</div>
<p>さようなら</p>
</div>
<script>$("div").children(".selected").css("color", "blue");</script>
</body>
</html>
© 2010 - 2017 STUDIO KINGDOM