jQuery 过滤被删元素
Posted 乱舞春秋__
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery 过滤被删元素相关的知识,希望对你有一定的参考价值。
我们可以在jQuery remove() 方法设置一个参数,对被删元素进行过滤。该参数可以是任何 jQuery 选择器。
语法格式:
$(selector).remove(selector);
示例:
删除指定的段落:
使用以下语句对p元素进行过滤:
$("p").remove(".two");
完整代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
ul {
width: 200px;
height: 200px;
background-color: rgba(12, 15, 218, 0.678);
}
</style>
<script src="jQuery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("p").remove(".two");
})
});
</script>
</head>
<body>
<button>按钮</button>
<p>段落一</p>
<p class="two">段落二</p>
<p>段落三</p>
<p>段落四</p>
<p>段落五</p>
</body>
</html>
效果图:
删除前:
删除后:
以上是关于jQuery 过滤被删元素的主要内容,如果未能解决你的问题,请参考以下文章
jQuery 删除元素remove()和empty() 用法
jquery 对象的 heightinnerHeightouterHeight 的区别以及DOM 元素的 clientHeightoffsetHeightscrollHeightoffset(代码片段