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


JQuery wrapInner()用法及代碼示例


wrapInner() 方法是 jQuery 中的內置方法,用於將 HTML 元素包在每個選定元素的內容周圍。

用法:

$(selector).wrapInner(wrap_element, function(index))

Parameters: 該函數接受如上所述和如下所述的兩個參數:

  • wrap_element:它是一個強製參數,用於指定 HTML 元素來環繞所選元素的內容
  • function:它是一個可選參數,用於指定返回包裝元素的函數。
    • index:它返回元素的索引。

返回值:此方法返回已應用更改的選定元素。

以下示例說明了 jQuery 中的 wrapInner() 方法:

示例 1:此示例不包含可選參數。

html


<!DOCTYPE html>
<html>
<head>
    <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 () {
            $("div").click(function () {
                $(this).wrapInner("<b></b>").css(
                    "background-color", "green");
            });
        });
    </script>
    <style>
        body {
            width: 200px;
            padding: 20px;
            height: 20px;
            border: 2px solid green;
        }
    </style>
</head>
<body>
    <!-- click on this div and see the change -->
    <div>Welcome to GeeksforGeeks!</div>
</body>
</html>

輸出:

jquery-49

示例 2:

html


<!DOCTYPE html>
<html>
<head>
    <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 () {
            $("div").click(function () {
                $("span").wrapInner(function (n) {
                    return "<i></i>";
                });
            });
        });
    </script>
    <style>
        body {
            width: 250px;
            padding: 20px;
            height: 20px;
            font-size: 20px;
            border: 2px solid green;
        }
    </style>
</head>
<body>
    <!-- click on this div and see the change -->
    <div>
        Welcome to 
        <span>GeeksforGeeks!</span>
    </div>
</body>
</html>

輸出:

jquery-50

相關文章:



相關用法


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