zl程序教程

您现在的位置是:首页 >  前端

当前栏目

jQuery删除或是清空某个HTML元素示例

jQueryHTML 删除 示例 元素 清空 某个 或是
2023-06-13 09:15:40 时间

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");