ホームページ > 記事 > ウェブフロントエンド > jQueryのremove()メソッド_jqueryの詳細説明
remove() メソッドの定義と使用法:
このメソッドは、一致するすべての要素を DOM から削除します。
注:remove() メソッドは、jQuery オブジェクトから一致する要素を削除しないため、これらの一致する要素は将来再び使用できます。ただし、要素自体に加えて、バインドされたイベントなどの他のイベントも保持されます。 , 追加データ等は削除されます。
文法構造:
$(selector).remove(expr)
パラメータリスト:
パラメータの説明
expr はオプションです。要素をフィルタリングするための jQuery 式
コード例:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("button").click(function(){ $("div").remove("#first"); }) }) </script> </head> <body> <div id="first">我是第一</div> <div id="second">我是第二</div> <button>点击</button> </body> </html>
次のコードは、div コレクション内の最初の ID を持つ div を削除できます。
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("#btd").click(function(){ $("div").remove(); }) }) </script> </head> <body> <div id="first">我是第一</div> <div id="second">我是第二</div> <button id="btd">点击删除第一个div</button> </body> </html>
パラメータを省略した場合、一致する要素はすべて削除されます。
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style type="text/css"> div{ width:200px; height:200px; border:5px solid green; } </style> <script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("#btd").click(function(){ var a=$("div"); a.remove("#first"); $("#btn").click(function(){ alert(a.length); }) }) }) </script> </head> <body> <div id="first">我是第一</div> <div id="second">我是第二</div> <button id="btd">删除第一个div</button><button id="btn">查看删除操作后div的数量</button> </body> </html>
remove() は DOM 内の一致する要素を削除しましたが、jquery オブジェクトからは削除していません。
jquery は、remove() メソッドを使用して、指定されたクラスの子要素を削除します
<!DOCTYPE html> <html> <head> <script src="js/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ $("p").remove(".italic"); }); }); </script> </head> <body> <p>This is a paragraph in the div.</p> <p class="italic"><i>This is another paragraph in the div.</i></p> <p class="italic"><i>This is another paragraph in the div.</i></p> <button>Remove all p elements with class="italic"</button> </body> </html>
このコードを見た後は、あまり説明する必要はないと思います。誰もが理解できるでしょうが、非常に興味深い方法です。