当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery remove()用法及代码示例


jQuery remove() 方法用于将所选元素从 DOM 中移除。它删除所选元素本身以及其中的所有内容(包括所有文本和子节点)。此方法还会删除所选元素的数据和事件。

如果你想在不移除数据和事件的情况下移除元素,你应该使用 detach() 方法。如果您只想删除数据和事件,请使用 empty() 方法。

用法

$(selector).remove(selector)

jQuery remove() 方法的参数:

参数 描述
Selector 是一个可选参数。它指定是否删除一个或多个元素。如果必须删除多个元素,则应使用逗号 (,) 分隔它们。

jQuery remove() 方法示例

<!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>




相关用法


注:本文由纯净天空筛选整理自 jQuery remove()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。