本文实例讲述了jQuery子属性过滤选择器用法。分享给大家供大家参考。具体分析如下:
1. :first-child选择器
用于选择其父级的第一个子元素的所有元素,格式: 代码如下:$(“selector:first-child”)
如: 代码如下:$(“ul:first-child”).css(“text-decoration”, “underline”).css(“color”, “blue”);
2. :last-child选择器
用于选择其父级的最后一个子元素的所有元素,格式: 代码如下