首页  >  文章  >  jquery动画如何去除元素内容

jquery动画如何去除元素内容

尊渡假赌尊渡假赌尊渡假赌
尊渡假赌尊渡假赌尊渡假赌原创
2023-05-29 09:25:171090浏览

jquery动画去除元素内容的方法:1、利用“children()”方法返回被选元素的所有子元素,再通过“remove()”方法删除被选元素和子元素,语法为“$(元素).children().remove();”;2、利用“empty()”方法删除被选元素的子元素,语法为“$(子元素).empty();”。

jquery动画如何去除元素内容

本教程操作系统: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元素中的内容即可。

屏幕截图 2023-05-29 091949.png

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元素中的内容即可。

屏幕截图 2023-05-29 092249.png

以上是jquery动画如何去除元素内容的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn