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


JQuery slice()用法及代碼示例


slice()是一個內置方法jQuery用於根據其索引選擇元素的子集。子集是可能是大集合的一部分的集合。

用法:

$(selector).slice(para1, para2)

參數:它接受下麵指定的兩個參數 -

  • para1:它指定從哪裏開始選擇元素。
  • para2:它是可選的,它指定在哪裏停止選擇元素。

返回值:它返回所選元素的子集。

顯示 slice() 方法工作原理的 jQuery 代碼:

例子:在此示例中,我們使用above-explained方法。

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 () {
            $("p").slice(1, 4).css("background-color", "lightgreen");
        });
    </script>
    <style>
        body {
            width: 500px;
            height: 200px;
            padding: 20px;
            border: 2px solid green;
        }
    </style>
</head>
<body>
    <h1>Welcome to GeeksforGeeks !</h1>
    <p>This is at index 0.</p>
    <p>This is at index 1.</p>
    <p>This is at index 2.</p>
    <p>This is at index 3.</p>
</body>
</html>

輸出:在此代碼中,從索引 1 到 3 的所有段落元素都會突出顯示。



相關用法


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