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


JQuery empty()用法及代码示例


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

用法:

$(selector).empty()

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


返回值:此方法返回通过empty()方法进行指定更改的所选元素。

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

例:

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

输出:
在单击按钮之前:

单击按钮后,将不显示任何内容:



相关用法


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