jQuery API の remove() は、マッチした要素を削除するメソッド。要素に関連付けられているjQueryデータも削除する。
要素に関連付けられているjQueryデータを保持させておきたい場合は、detach()を使う。
detach()のページに、removeとdetachの比較サンプルがある。
記述方法
jQuery( セレクター ) . remove();
「セレクター」に指定した要素を削除する。
記述例
jQuery( '#jquery-sample' ) . remove();
idが「jquery-sample」の要素を削除する。
実装例(サンプル)
赤
青
緑
色を追加:
実装例(サンプル)の動作について
赤 、 青 、 緑 のいづれかをクリックすると、「色を追加: 」の右側に、クリックした色を追加する。
「色を追加: 」の右側に追加した色をクリックすると、クリックした要素を削除する。
実装例(サンプル)のソースコード
JavaScript
<script>
<!--
jQuery( function() {
jQuery( '#jquery-sample-div > span' ) . click( function () {
var str = jQuery( this ) . html();
jQuery( '#jquery-sample-append' ) . append( str );
} );
jQuery( '#jquery-sample-append > span' ) . live( 'click', function () {
jQuery( this ) . remove();
} );
} );
// -->
</script>
<!--
jQuery( function() {
jQuery( '#jquery-sample-div > span' ) . click( function () {
var str = jQuery( this ) . html();
jQuery( '#jquery-sample-append' ) . append( str );
} );
jQuery( '#jquery-sample-append > span' ) . live( 'click', function () {
jQuery( this ) . remove();
} );
} );
// -->
</script>
CSS
<style type="text/css">
<!--
#jquery-sample-div span,
#jquery-sample-append span {
cursor: pointer;
}
.jquery-sample-red {
background-color: red;
color: white;
border-radius: 5px;
}
.jquery-sample-blue {
background-color: blue;
color: white;
border-radius: 5px;
}
.jquery-sample-green {
background-color: green;
color: white;
border-radius: 5px;
}
-->
</style>
<!--
#jquery-sample-div span,
#jquery-sample-append span {
cursor: pointer;
}
.jquery-sample-red {
background-color: red;
color: white;
border-radius: 5px;
}
.jquery-sample-blue {
background-color: blue;
color: white;
border-radius: 5px;
}
.jquery-sample-green {
background-color: green;
color: white;
border-radius: 5px;
}
-->
</style>
HTML
<div id="jquery-sample-div">
<span>
<span class="jquery-sample-red"> 赤 </span>
</span>
<span>
<span class="jquery-sample-blue"> 青 </span>
</span>
<span>
<span class="jquery-sample-green"> 緑 </span>
</span>
</div>
<p>色を追加: <span id="jquery-sample-append"></span></p>
<span>
<span class="jquery-sample-red"> 赤 </span>
</span>
<span>
<span class="jquery-sample-blue"> 青 </span>
</span>
<span>
<span class="jquery-sample-green"> 緑 </span>
</span>
</div>
<p>色を追加: <span id="jquery-sample-append"></span></p>