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


JQuery detach()用法及代碼示例


detach()是 jQuery 中的內置方法,它從 DOM 樹中刪除所選元素(包括所有文本和子節點),但保留數據和事件。文檔對象模型 (DOM) 是萬維網聯盟標準。這定義了 DOM 樹中的訪問元素。

用法:

$(selector).detach()

參數:它不接受任何參數。

返回值:它返回選定的元素以及所有已刪除的文本和子節點。

jQuery 代碼顯示此方法的用法原理:

示例 1:在下麵的代碼中,所有段落元素都將分離。

html


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

輸出:

jquery-10



相關用法


注:本文由純淨天空篩選整理自kundankumarjha大神的英文原創作品 jQuery detach() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。