jQuery remove()方法
jQuery remove() 方法用于将所选元素从 DOM 中移除。它会移除选中的元素本身以及其中的一切内容(包括所有文本和子节点)。这个方法还会移除所选元素的数据和事件。
如果你想删除元素但不删除数据和事件,应该使用 detach() 方法。如果只想删除数据和事件,使用 empty() 方法。
语法 :
$(selector).remove(selector)
jQuery remove() 方法的参数
参数 | 描述 |
---|---|
selector | 是一个可选参数。它指定是否删除一个或多个元素。如果你需要删除多个元素,则应使用逗号(,)分隔。 |
jQuery remove()方法示例1
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>remove demo</title>
<style>
p {
background: pink;
margin: 6px 0;
}
</style>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<p>Hello Guys!</p>
This is javatpoint.com<br/>
<p>A place for all technology.</p>
<button>Execute remove() method on paragraphs</button>
<script>
( "button" ).click(function() {( "p" ).remove();
});
</script>
</body>
</html>
jQuery remove()方法示例2
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>
(document).ready(function(){("button").click(function(){
$("p").remove();
});
});
</script>
</head>
<body>
<p>Welcome Guys!</p>
<p><b>This is javatpoint.com</b></p>
<button>Click here to execute remove() method</button>
</body>
</html>