返回值:jQueryremove([selector])

Remove the set of matched elements from the DOM.

Similar to .empty(), the .remove() method takes elements out of the DOM. We use .remove() when we want to remove the element itself, as well as everything inside it. In addition to the elements themselves, all bound events and jQuery data associated with the elements are removed.

Consider the following HTML:

<div class="container">
  <div class="hello">Hello</div>
  <div class="goodbye">Goodbye</div>
</div>

We can target any element for removal:

$('.hello').remove();

This will result in a DOM structure with the <div> element deleted:

<div class="container">
  <div class="goodbye">Goodbye</div>
</div>

If we had any number of nested elements inside <div class="hello">, they would be removed, too. Other jQuery constructs such as data or event handlers are erased as well.

We can also include a selector as an optional parameter. For example, we could rewrite the previous DOM removal code as follows:

$('div').remove('.hello');

This would result in the same DOM structure:

<div class="container">
  <div class="goodbye">Goodbye</div>
</div>

示例:

Removes all paragraphs from the DOM

<!DOCTYPE html>
<html>
<head>
<style>p { background:yellow; margin:6px 0; }</style>
<script src="jquery.min.js"></script>
</head>
<body>

<p>Hello</p> 
  how are 
  <p>you?</p>
  <button>Call remove() on paragraphs</button>

<script>


    $("button").click(function () {
      $("p").remove();
    });



</script>
</body>
</html>
演示:

示例:

Removes all paragraphs that contain "Hello" from the DOM

<!DOCTYPE html>
<html>
<head>
<style>p { background:yellow; margin:6px 0; }</style>
<script src="jquery.min.js"></script>
</head>
<body>

<p class="hello">Hello</p>
  how are 
  <p>you?</p>

  <button>Call remove(":contains('Hello')") on paragraphs</button>

<script>



    $("button").click(function () {
      $("p").remove(":contains('Hello')");
    });



</script>
</body>
</html>
演示: