标签:代码 amp http 匹配 bsp last ast htm example
匹配最后一个子元素
:last 只匹配最后一个元素,而此选择符将为每个父元素匹配最后一个子元素
在每个 ul 中查找最后一个 li
<ul>
<li>John</li>
<li>Karl</li>
<li>Brandon</li>
</ul>
<ul>
<li>Glen</li>
<li>Tane</li>
<li>Ralph</li>
</ul>
$("ul li:last-child")
[ <li>Brandon</li>, <li>Ralph</li> ]
标签:代码 amp http 匹配 bsp last ast htm example
原文地址:http://www.cnblogs.com/winyh/p/6236401.html