这篇文章主要讲解了“jquery如何去除元素内容”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“jquery如何去除元素内容”吧!
方法:1、利用children()和remove()方法删除指定元素的内容,语法为“$(元素).children().remove();”;2、利用empty()方法删除指定元素的内容,语法为“$(元素).empty();”。
本教程操作环境:windows7系统、jquery1.10.0版本、Dell G3电脑。
jquery怎样去除元素内容
在jquery中,可以给标签内的部分内容标签设置id属性,通过该id获得部分内容对象。
如需删除元素和内容,一般可使用以下两个 jQuery 方法:
remove() - 删除被选元素(及其子元素)
empty() - 从被选元素中删除子元素
下面我们通过示例来看一下这两种方法的使用,示例如下:
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>
输出结果:
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>
输出结果:
感谢各位的阅读,以上就是“jquery如何去除元素内容”的内容了,经过本文的学习后,相信大家对jquery如何去除元素内容这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是亿速云,小编将为大家推送更多相关知识点的文章,欢迎关注!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。