jQuery :last 选择器

jQuery :last 选择器

jQuery :last选择器是用来选择指定类型的最后一个元素的。

语法:

$(":last")

例子1:在这个例子中,我们将选择最后一个 <p>元素通过使用jQuery :last Selector。

<!DOCTYPE html>
<html>
 
<head>
    <script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
    </script>
     
    <script>
        (document).ready(function () {
            ("p:last").css(
                "background-color", "green");
        });
    </script>
</head>
 
<body>
    <h1>
        <center>
            Geeks
        </center>
    </h1>
    <p>Geeks for Geeks</p>
    <p>jQuery</p>
    <p>Last Selector</p>
</body>
 
</html>

输出:

jQuery :last 选择器

例子2:在这个例子中,我们将改变最后一个<p>元素的背景颜色。

<!DOCTYPE html>
<html>
 
<head>
    <script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
    </script>
 
    <script>
        (document).ready(function () {
            ("p:last").css(
                "background-color", "green");
        });
    </script>
</head>
 
<body>
    <h1>
        <center>
            Geeks
        </center>
    </h1>
    <div style="border:1px solid;">
        <p>Geeks for Geeks</p>
        <p>jQuery</p>
    </div>
    <br>
 
    <div style="border:1px solid;">
        <p>Geeks for Geeks</p>
        <p>jQuery</p>
        <p>Last Selector</p>
    </div>
    <div>jQuery:Last Selector</div>
</body>
 
</html>

输出:

jQuery :last 选择器

注意:上述代码将只选择最后的 <p>第二个 div 的元素。要选择最后一个 <p>第一个div的元素使用:last-child选择器。

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程