:nth-last-of-type()選擇器根據(jù)它們?cè)谝唤M同級(jí)兄弟中的位置(從末尾開始)選擇給定類型的所有元素。
使用:nth-last-child()選擇器,選取屬于其父元素的不限類型的第 n 個(gè)子元素的所有元素,從最后一個(gè)子元素開始計(jì)數(shù)。
$(":nth-last-of-type(number|An+B|odd|even)")
從末尾算起,選擇屬于其父元素的第4個(gè)<span>元素的每個(gè)<span>元素:
$(document).ready(function(){ $("span:nth-last-of-type(4)").css("background", "lime"); });測(cè)試看看?/?
奇數(shù)和偶數(shù)關(guān)鍵字用于匹配索引為奇數(shù)或偶數(shù)的子元素:
$(document).ready(function(){ $("span:nth-last-of-type(odd)").css("background", "lime"); $("span:nth-last-of-type(even)").css("background", "aqua"); });測(cè)試看看?/?
參數(shù) | 描述 |
---|---|
number | 每個(gè)要匹配的子元素的索引(從1開始) |
odd | 選擇每個(gè)奇數(shù)子元素 |
even | 選擇每個(gè)偶數(shù)子元素 |
An+B | 指定要選擇的子元素 示例:p:nth-last-of-type(3n + 2)從第二段開始選擇每個(gè)第三段 |