我想选择匹配特定类型的父元素的第一个元素;的 css 等价物$(parent).children()[0]
。例如,h1
作为父项的第一个子项的标签:
<div>
<h1 id="foo"></h1> // match
<div></div> // not match
…
</div>
<section>
<h1 id="bar"></h1> // match
<div></div> // not match
…
</section>
<div>
<div id="baz"></div> // not match
<h1 id="qux"></h1> // not match
…
</div>
编辑我知道没有“父”选择器。