jquery可以删除后代子元素吗?怎么删除?下面本篇文章给大家介绍一下。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。
1、使用remove()方法
remove() 方法删除被选元素及其子元素。
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("#div1").remove(); }); }); </script> </head> <body> <div id="div1" style="height:100px;width:300px;border:1px solid black;background-color:yellow;"> 这是 div 中的一些文本。 <p>这是在 div 中的一个段落。</p> <p>这是在 div 中的另外一个段落。</p> </div> <br> <button>移除div元素</button> </body> </html>
2、使用empty()方法
empty() 方法删除被选元素的子元素。
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="https://cdn.<i style="color:transparent">来源gaodai$ma#com搞$代*码网</i>staticfile.org/jquery/1.10.2/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;"> 这是 div 中的一些文本。 <p>这是在 div 中的一个段落。</p> <p>这是在 div 中的另外一个段落。</p> </div> <br> <button>清空div元素</button> </body> </html>
更多web前端知识,请查阅 搞代码网 !!
以上就是jquery可以删除后代子元素吗?的详细内容,更多请关注gaodaima搞代码网其它相关文章!