本文实例讲述了jQuery子属性过滤选择器用法。分享给大家供大家参考。具体分析如下:
1. :first-child选择器
用于选择其父级的第一个子元素的所有元素,格式:
$("selector:first-child")
如:
$("ul:first-child").css("text-decoration", "underline").css("color", "blue");
2. :last-child选择器
用于选择其父级的最后一个子元素的所有元素,格式:
$("selector:last-child")
如:
$("ul:last-child").css("text-decoration", "underline").css("color", "red");
3. :nth-child选择器
用于选择父元素下的第N个子元素或奇偶元素。
语法格式:
$("selector:nth-child(index/even/odd/equation)");
如:
$("ul li:nth-child(4)").css("color", "red");//将ul元素下的第5个元素的文本颜色设置为红色,即该li元素的索引值为4
4. :only-chilid选择器
用于选择某元素的惟一选择器
格式:
$("selector:only-chilid")
简单示例:
效果图如下所示:
希望本文所述对大家的jQuery程序设计有所帮助。