84669 person learning
152542 person learning
20005 person learning
5487 person learning
7821 person learning
359900 person learning
3350 person learning
180660 person learning
48569 person learning
18603 person learning
40936 person learning
1549 person learning
1183 person learning
32909 person learning
$('.item-2').siblings(':last').css('border', '2px solid blue')
为何这句话在实现当中,只对最后一个class=item-2的后紧邻li设置了边框,而不是所有class=item-2的后紧邻li设置了边框?那么后者该如何实现?
Siblings() related questions? -PHP Chinese website Q&A-Questions related to siblings()? -PHP Chinese website Q&A
Please watch and learn.
因为siblings(':last')中添加的有过滤器":last",这是对所有class=item-2的后紧邻li设置了边框 :$('.item-2').siblings().css('border', '2px solid blue')
:last选择器是选择 匹配集合中所有元素的最后一个子元素。而 :last-child选择器是选择 匹配集合中,属于其父元素的最后一个子元素。
Siblings() related questions? -PHP Chinese website Q&A-Questions related to siblings()? -PHP Chinese website Q&A
Please watch and learn.
因为siblings(':last')中添加的有过滤器":last",这是对所有class=item-2的后紧邻li设置了边框 :$('.item-2').siblings().css('border', '2px solid blue')
:last选择器是选择 匹配集合中所有元素的最后一个子元素。
而 :last-child选择器是选择 匹配集合中,属于其父元素的最后一个子元素。