本文摘自PHP中文网,作者青灯夜游,侵删。
删除方法:1、使用remove()方法,可以删除被选元素及其子元素,语法“$(selector).remove()”;2、使用empty()方法,可以从被选元素中删除子元素,语法“$(selector).empty()”。

本教程操作环境:windows7系统、jquery1.10.2版本、Dell G3电脑。
如需删除元素和内容,一般可使用以下两个 jQuery 方法:
remove() - 删除被选元素(及其子元素)
empty() - 从被选元素中删除子元素
jQuery remove() 方法
jQuery remove() 方法删除被选元素及其子元素。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | <!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 >
|
效果图:
阅读剩余部分
相关阅读 >>
jQuery 怎么判断radio是否选中
jQuery如何实现延迟执行
ajax与jQuery的区别是什么
jQuery有哪些函数
jQuery如何获取文本框的值?
如何解决jQuery参数乱码问题
jQuery中怎么打开新窗口
jQuery this与$(this)的区别
jQuery :disabled是什么选择器
jQuery怎么使字体变色
更多相关阅读请进入《jQuery》频道 >>
人民邮电出版社
本书对 Vue.js 3 技术细节的分析非常可靠,对于需要深入理解 Vue.js 3 的用户会有很大的帮助。——尤雨溪,Vue.js作者
转载请注明出处:木庄网络博客 » jquery怎么删除html元素