📜  jQuery | last() 示例

📅  最后修改于: 2022-05-13 01:55:58.965000             🧑  作者: Mango

jQuery | last() 示例

last()函数是 jQuery 中的一个内置函数,用于查找指定元素的最后一个元素。
句法:

$(selector).last()

这里的选择器是被选中的元素。
参数:它不接受任何参数。
返回值:返回被选元素中的最后一个元素。

显示此函数工作的 JavaScript 代码:

代码#1:

   
      
      
   
   
      

Welcome to GeeksforGeeks !!!

      

        This is the First.

      

        This is the Second.

      

        This is the Third.

      
   

在这段代码中,最后一个“p”元素的背景颜色发生了变化。
输出:

代码#2:


  

    
    

  

    

Welcome to GeeksforGeeks !!!

    
        

This is the First.

    
    
    
        

This is the Second.

    
    
    
        

This is the Third.

    
    
  

在上面的例子中,类“main”的最后一个元素被突出显示。
输出: