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");热门推荐
7 简短的二胎祝福语
10 简短霸气女儿生日 祝福语
11 祝福语高考小众诗句简短
12 元旦祝福语20秒简短
13 老师过年祝福语大全 简短
14 一生祝福语简短
15 产检祝福语简短霸气
16 朋友店开张祝福语简短
17 生日爱情祝福语大全简短
18 朋友女儿生日祝福语 简短