第14章 jQuery - 要素を削除する
jQuery(ジェイクエリー)は、ウェブブラウザ用のJavaScriptコードをより容易に記述できるようにするために設計されたJavaScriptライブラリである。
homepage
# jQuery - 要素を削除する *** jQueryを使えば、既存のHTML要素を簡単に削除できます。 ## 要素/コンテンツを削除 要素とコンテンツを削除するために、主に2つのjQueryメソッドがあります。 * `remove()` - 選択した要素(およびその子要素)を削除します * `empty()` - 選択した要素から子要素を削除します ## remove()メソッド jQuery `remove()`メソッドは、選択された要素とその子要素を削除します #### 例 [sample14-1.html] ``` <!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("#div1").remove(); }); }); </script> </head> <body> <div id="div1" style="height:110px;width:300px;border:1px solid black;background-color:yellow;"> This is some text in the div. <p>This is a paragraph in the div.</p> <p>This is another paragraph in the div.</p> </div> <br> <button>Remove div element</button> </body> </html> ``` #### 実行結果 <!DOCTYPE html> <pre><span class="nocode"> <iframe src="javascript: '<html><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("#div1").remove(); }); }); </script> </head> <body> <div id="div1" style="height:110px;width:300px;border:1px solid black;background-color:yellow;"> This is some text in the div. <p>This is a paragraph in the div.</p> <p>This is another paragraph in the div.</p> </div> <br> <button style="font-size:inherit">Remove div element</button> </body> </html>'" width="800" height="250"></iframe> </span> </pre> *** > **練習** >> **問題**[Ex14-1.html] メソッドempty()を練習しましょう。 <!DOCTYPE html> <pre><span class="nocode"> <iframe src="javascript: '<html><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("#p2").empty(); }); }); </script> </head> <body> <div id="div1" style="height:110px;width:300px;border:1px solid black;background-color:yellow;"> This is some text in the div. <p>This is a paragraph in the div.</p> <p id="p2">This is another paragraph in the div.</p> </div> <br> <button style="font-size:inherit">Remove second p element</button> </body> </html>'" width="800" height="250"></iframe> </span> </pre>
content
戻る