:nth-last-of-type() 选择器用于选择具有相同元素名称的父级的所有子级,从最后一个到第一个计数。它使用 1 索引计数。
句法:
element:nth-last-of-type(n|even|odd|formula)
参数:
- n:从最后选择第n个元素。
- even:它选择最后一个偶数元素。
- 奇数:它从最后选择每个奇数元素。
- 公式:它包含生成元素分组的公式,从最后开始,例如:3n+2 通过取n-0, 1, 2, …
示例 1:此示例使用 :nth-last-of-type() 选择器从最后一个选择奇数元素。
jQuery | :nth-last-of-type() Selector
Computer Science Subjects
- Data Structure
- Algorithm Analysis
- Operating System
- Computer Networks
- Web Technology
- C Programming
- C++ Programming
- Java
输出
示例 2:此示例使用 :nth-last-of-type() 选择器来选择最后一个元素。
jQuery | :nth-last-of-type() Selector
Company - GeeksforGeeks
Name - ABC
Email - abc@geeksforgeeks.org
Company - GFG
Name - XYZ
Email - xyz@gfg.org
Company - G4G
Name - Geeks
Email - geeks@g4g.org
输出: