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


JQuery remove()用法及代码示例


remove()中的方法jQuery用于删除所有选定的元素,包括所有文本。此方法还会删除所选元素的数据和所有事件。

用法:

$(selector).remove()

返回值:它将返回删除的所选元素的所有数据。

示例 1:

Input: $("p").remove()
Output: Output will be all the elements of the paragraph get deleted.

示例 1:在此示例中,我们使用 jQuery 删除方法。

html


<!DOCTYPE html>
<html>
<head>
    <script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
        //this is JQuery CDN directed from the JQuery website
    </script>
    <script>
        $(document).ready(function () {
            $("button").click(function () {
                $("p").remove();
            });
        });
    </script>
</head>
<body>
    <div style="padding-left:220px;
                padding-top:100px;">
        <p style="font-size:35px;">
            Welcome to GFG!!!.
        </p>
        <button style="padding:15px;">
            Click ME
        </button>
    </div>
</body>
</html>

输出:

jquery-23

我们还可以在以下命令的帮助下使用类名查找和删除元素jQuery remove()方法。

用法:

$(".class_name").remove()

返回值:它将返回页面上删除的所有带有类名的部分。

示例 2:

Input: $(".geek").remove()
Output: Here "gfg!!!" get deleted.

示例 2:在此示例中,我们使用 jQuery remove() 方法。

html


<!DOCTYPE html>
<html>
<head>
    <script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
        //this is JQuery CDN directed from the JQuery website
                </script>
    <script>
        $(document).ready(function () {
            $("button").click(function () {
                $(".geeks").remove();
            });
        });
    </script>
</head>
<body>
    <div style="margin-left:180px; font-size:35px;
                padding-top:100px">
        <p class="geeks">
            Welcome to GFG!!!.
        </p>
        <p class="geeks">
            Hello, My class is geeks
        </p>
        <button>Click ME</button>
    </div>
</body>
</html>

输出:

jquery-24



相关用法


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