detach()是jQuery中的內置方法,可從DOM樹中刪除所選元素,包括其所有文本節點和子節點,但保留數據和事件。文檔對象模型(DOM)是萬維網聯盟標準。這定義用於訪問DOM樹中的元素。
用法:
$(selector).detach()
參數:它不接受任何參數。
返回值:它返回具有所有已刪除的文本和子節點的選定元素。
代碼1:
在下麵的代碼中,所有段落元素都將被分離。
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
<script>
<!-- jQuery code to show detach method working -->
$(document).ready(function() {
$("button").click(function() {
$("p").detach();
});
});
</script>
<style>
body {
display: block;
width: 400px;
height: 250px;
padding: 20px;
border: 2px solid green;
font-size: 25px;
}
</style>
</head>
<body>
<div> This is the div part !</div>
<br>
<!-- This paragraphs get detached -->
<p>This is the first paragraph !</p>
<p>This is the second paragraph !</p>
<button>Click Me !</button>
</body>
</html>
輸出:
在單擊“click Me”按鈕之前,
單擊“click Me”按鈕後,
相關用法
- JQuery first()用法及代碼示例
- JQuery has()用法及代碼示例
- JQuery val()用法及代碼示例
- JQuery after()用法及代碼示例
- JQuery last()用法及代碼示例
- JQuery eq()用法及代碼示例
- JQuery one()用法及代碼示例
- JQuery on()用法及代碼示例
- JQuery index()用法及代碼示例
- JQuery hasClass()用法及代碼示例
- JQuery focus()用法及代碼示例
- JQuery queue()用法及代碼示例
- JQuery stop()用法及代碼示例
- JQuery insertAfter()用法及代碼示例
注:本文由純淨天空篩選整理自kundankumarjha大神的英文原創作品 jQuery | detach() with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。