jQuery APIリファレンスDOM選択処理:結合
andSelf()
現在のセクションと前のセクションを選択
2009/2/27
andSelf() 戻り値:jQuery
現在の選択している要素集合に、前に選択した要素集合を追加して選択します。
要素を横断して、最後の横断の前にマッチした何かを追加するのに便利です。

andSelf()の使用例サンプルを見る
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="ja" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta http-equiv="imagetoolbar" content="no" />
<title>DOM選択処理:結合:andSelf()の使用例 | jQuery</title>
<link rel="stylesheet" type="text/css" href="/content/lib/global.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
$(function(){
$("#sample div").find("p").andSelf().addClass("border");
$("#sample div").find("p").addClass("background");
});
</script>
<style type="text/css">
#sample p, #sample div { margin:5px; padding:5px; }
.border { border:3px solid red; }
.background { background:yellow; }
</style>
</head>
<body>
<div id="wrap">
<h1>DOM選択処理:結合:andSelf()の使用例 | jQuery</h1>
<p>▼div要素と、div要素の中にあるp要素すべてにに赤枠を付け、<br> div要素の中にあるp要素のみ背景色を黄色にします。<br> andSelf()を使用していないため、div要素の背景色は黄色にはなりません。</p>
<!-- CODE -->
<div id="sample">
<div>
<p>1番目のの段落</p>
<p>2番目の段落</p>
</div>
</div>
<!-- / CODE -->
</div>
</body>
</html>
end()
直近の操作を破棄して、マッチした要素集合を元の状態に戻す
2009/2/27
end() 戻り値:jQuery
直近の操作を破棄して、マッチした要素集合を元の状態に戻します。
破棄する操作がない場合は、空の要素集合を返します。
end()は、add、andSelf、children、filter、find、map、next、nextAll、not、parent、parents、prev、prevAll、siblings、slice、Manipulation関数のcloneといったTraversing関数の後で、変更されたjQueryオブジェクトを元の状態に戻すために使用することができます。

end()の使用例サンプルを見る
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="ja" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta http-equiv="imagetoolbar" content="no" />
<title>DOM選択処理:結合:end()の使用例 | jQuery</title>
<link rel="stylesheet" type="text/css" href="/content/lib/global.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
$(function(){
jQuery.fn.showTags=function(n){
var tags=this.map(function(){
return this.tagName;
}).get().join(", ");
$("b:eq("+n+")").text(tags);
return this;
};
$("#sample p").showTags(0)
.find("span")
.showTags(1)
.css("background", "yello")
.end()
.showTags(2)
.css("font-style", "italic");
});
</script>
<style type="text/css">
#sample p, #sample div { margin:5px; padding:5px; font-weight:bold; }
#sample div { color:blue; }
#sample b { color:red; }
</style>
</head>
<body>
<div id="wrap">
<h1>DOM選択処理:調査:end()の使用例 | jQuery</h1>
<p>▼すべてのp要素を選択し、それらの中にあるspan要素を見つけ、p要素に選択を戻します。</p>
<!-- CODE -->
<div id="sample">
<p>Hi there <span>how</span> are you <span>doing</span>?</p>
<p>この<span>span要素は</span>この文中にある<span>span要素</span>の<span>1つ</span>です。</p>
<div>最初のjQueryオブジェクトのタグ:<b></b></div>
<div>検索後のjQueryオブジェクトのタグ:<b></b></div>
<div>元に戻した後のjQueryオブジェクトのタグ:<b></b></div>
</div>
<!-- / CODE -->
</div>
</body>
</html>