如何使用 jQuery 中的元素 ID 从 DOM 中移除所有元素?
要使用元素 ID 从 DOM 中移除所有元素,请使用 remove() 方法。
示例
你可以尝试运行以下代码,使用元素 ID 从 DOM 中移除所有元素
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("#mydiv").remove(); }); }); </script> </head> <body> <button>Click to remove all elements</button><br> <div id="mydiv" style="height:200px;width:350px;border:2px solid red;background-color:blue;"> <p>This is some text.</p> <span>This is demo text.</span> </div> </body> </html>
广告