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


JQuery wrapAll()用法及代碼示例


wrapAll()方法是jQuery中的內置方法,當指定元素將所有選定元素包裝在一起時使用。

用法:

$(selector).wrapAll(wrap_element)

參數:此方法接受強製的單個參數wrap_element。此參數用於指定將哪個元素包裹在所選元素周圍。


返回值:此方法返回通過wrapAll()方法進行指定更改的所選元素。

下麵的示例說明了jQuery中的wrapAll()方法:

例:

<!DOCTYPE html> 
<html> 
    <head> 
        <title>The wrapAll 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() { 
                    $("p").wrapAll("<div></div>"); 
                }); 
            }); 
        </script> 
        <style> 
            div { 
                background-color: lightgreen; 
                padding: 20px; 
                width: 200px; 
                font-weight: bold; 
                height: 60px; 
                border: 2px solid green; 
            } 
        </style> 
    </head> 
    <body> 
        <!-- click on this paragraph and see the change -->
        <p>Welcome to GeeksforGeeks!<br><br> 
          
        <button>Click Here!</button></p> 
    </body> 
</html>

輸出:



相關用法


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