jquery动画去除元素内容的方法:1、利用“children()”方法返回被选元素的所有子元素,再通过“remove()”方法删除被选元素和子元素,语法为“$(元素).children().remove();”;2、利用“empty()”方法删除被选元素的子元素,语法为“$(子元素).empty();”。
本教程操作系统:Windows10系统、jQuery3.6.0版本、Dell G3电脑。
jquery动画去除元素内容的两种方法:
1、利用children() 方法返回被选元素的所有直接子元素,再通过jQuery remove() 方法删除被选元素及其子元素。
其代码如下:
<!DOCTYPE html> <html> <head> <script src="/jquery/jquery-1.11.1.min.js"></script><script>$(document).ready(function(){ $("button").click(function(){ $("#div1").children().remove(); });}); </script> </head> <body> <div id="div1" style="height:120px;width:300px;border:1px solid black;background-color:yellow;"> <p>This is some text in the div.</p> <p>This is a paragraph in the div.</p> <p>This is another paragraph in the div.</p> </div> <br> <button>删除 div 元素</button ></body> </html>
用浏览器打开html文件,点击删除按钮,清除div元素中的内容即可。
2、jQuery empty() 方法删除被选元素的子元素。
其代码如下:
<!DOCTYPE html> <html> <head> <script src="/jquery/jquery-1.11.1.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>清空 div 元素</button> </body> </html>
用浏览器打开html文件,点击删除按钮,清除div元素中的内容即可。
以上是jquery动画如何去除元素内容的详细内容。更多信息请关注PHP中文网其他相关文章!