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


JQuery empty()用法及代码示例


empty() 方法是 jQuery 中的内置方法,用于删除所选元素的所有子节点及其内容。

用法:

$(selector).empty()

参数:该方法不接受任何参数。

返回值:此方法返回具有 empty() 方法所做的指定更改的选定元素。

下面的示例说明了 jQuery 中的 empty() 方法:

例子:在此示例中,我们使用 jquery empty() 方法。

html


<!DOCTYPE html>
<html>
<head>
    <title>The empty Method</title>
    <script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
    </script>
    <!-- jQuery code to show the working of this method -->
    <script>
        $(document).ready(function () {
            $("button").click(function () {
                $("body").empty();
            });
        });
    </script>
    <style>
        div {
            width: 200px;
            height: 100px;
            margin: 10px;
            padding: 20px;
            background-color: lightgreen;
            font-weight: bold;
            font-size: 20px;
        }
        button {
            margin: 10px;
        }
    </style>
</head>
<body>
    <div>
        Hello !
        <p>
            Welcome to 
            <span>GeeksforGeeks</span>.
        </p>
    </div>
    <!-- click on this button to see the change -->
    <button>Click here..!</button>
</body>
</html>

输出:

jquery-11



相关用法


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