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 送给学长毕业祝福语简短