jQuery 删除或是清空某个HTML元素示例
jQuery使用下面两个方法来删除或是清空某个HTML元素。
remove()–删除指定的元素(包括其子元素)
empty()–清空指定元素的子元素
例如:
<!DOCTYPEhtml>
<html>
<head>
<metacharset="utf-8">
<title>JQueryDemo</title>
<scriptsrc="scripts/jquery-1.9.1.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("#div1").remove();
});
});
</script>
</head>
<body>
<divid="div1"style="height:100px;width:300px;
border:1pxsolidblack;background-color:yellow;">
Thisissometextinthediv.
<p>Thisisaparagraphinthediv.</p>
<p>Thisisanotherparagraphinthediv.</p>
</div>
<br>
<button>Removedivelement</button>
</body>
</html>
empty:
<!DOCTYPEhtml>
<html>
<head>
<metacharset="utf-8">
<title>JQueryDemo</title>
<scriptsrc="scripts/jquery-1.9.1.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("#div1").empty();
});
});
</script>
</head>
<body>
<divid="div1"style="height:100px;width:300px;
border:1pxsolidblack;background-color:yellow;">
Thisissometextinthediv.
<p>Thisisaparagraphinthediv.</p>
<p>Thisisanotherparagraphinthediv.</p>
</div>
<br>
<button>Emptythedivelement</button>
</body>
</html>
jQuery的remove()方法也支持一个参数,可以用于过滤一些需要删除的HTML元素。这个参数可以为任何有效的jQueryselector.
比如下面代码只删除class=”italic”的<p>元素:
$("p").remove(".italic");热门推荐
10 下雪拜年祝福语简短英语
11 中考物理加油祝福语简短
12 疫情加油蛋糕祝福语简短
13 晚辈读大学祝福语简短
14 企业跨年元旦祝福语简短
15 给母校送花祝福语简短
16 闰年感人婚礼祝福语简短
17 感恩老师祝福语简短精辟
18 告别祝福语长篇简短