ホームページ > 記事 > ウェブフロントエンド > jQuery は empty() メソッドを使用して要素とそのすべての子要素を削除します_jquery
この記事の例では、jQuery が empty() メソッドを使用して要素とそのすべての子要素を削除する方法を説明します。皆さんの参考に共有してください。具体的な実装方法は以下の通りです。
<!DOCTYPE html> <html> <head> <script src="js/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ $("#div1").empty(); }); }); </script> </head> <body> <div id="div1" style="height:100px;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>Empty the div element</button> </body> </html>
この記事が皆さんの jQuery プログラミングに役立つことを願っています。