因此,不是通过使用子元素和类名的组合来指定我想要在特定元素上磨练的id或类。
那么如何用jquery选择器指定我想要任何中心元素的第一个/最后一个子元素,它是具有类名== example的div的子元素?
<div class="example">
<center>
<a> <!--I want to be able to select this element -->
<a> <!--or this one -->
</center>
</div>
答案 0 :(得分:1)
你需要为第一个做这个:
$('div.example>center>*:first-child');
这是最后一次:
$('div.example>center>*:last-child');
您可以在jsfiddle.net上看到一个有效的示例。
确保你真的想要Child and not Descendants。