jQuery :lt() 选择器



jQuery 中的 :lt() 选择器用于选择匹配集中索引小于指定索引的元素。此选择器从集合中的第一个元素开始计数,索引为零 (0),依此类推。

语法

以下是 jQuery :lt() 选择器的语法:

$(":lt(index)")

参数

以下是上述语法的描述:

  • index: 一个基于零的整数,表示要比较的索引。索引小于此值的元素将被选中。

示例 1

在以下示例中,我们使用 jQuery :lt() 选择器来选择索引小于 2 的列表元素:

<html>
<head>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    <script>
        $(document).ready(function(){
            $("li:lt(2)").css("background-color", "yellow");
        });
    </script>
</head>
<body>
    <ul>
        <li>Item 1</li>
        <li>Item 2</li>
        <li>Item 3</li>
        <li>Item 4</li>
    </ul>
</body>
</html>

执行上述程序后,第一个 (索引:0) 和第二个 (索引:1) 列表项将以黄色背景色突出显示。

示例 2

在此示例中,我们选择并隐藏索引小于 2 的表格行:

<html>
<head>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    <script>
        $(document).ready(function(){
            $("tr:lt(2)").hide();
        });
    </script>
</head>
<body>
    <table border="1">
        <tr><td>Row 1</td></tr>
        <tr><td>Row 2</td></tr>
        <tr><td>Row 3</td></tr>
        <tr><td>Row 4</td></tr>
        <tr><td>Row 5</td></tr>
    </table>
</body>
</html>

执行后,索引小于 2 的表格行将被隐藏。

示例 3

这里,我们选择索引小于 2 的段落元素:

<html>
<head>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    <script>
        $(document).ready(function(){
            $("p:lt(2)").css("background-color", "yellow");
        });
    </script>
</head>
<body>
    <p>This is the first paragraph.</p>
    <p>This is the second paragraph.</p>
    <p>This is the third paragraph.</p>
</body>
</html>

第二个及以上的段落将以黄色背景色突出显示。

jquery_ref_selectors.htm
广告