當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。