我试图只选择最顶层的H1。在this fiddle中,我只是尝试选择ba,ss,we,a和tt的h1 HTML。然而,鉴于我目前的试验选择它们,我在某种程度上抓住了“我们”部分的低级H1。我唯一的猜测是“我们”部分有子部分的类声明,而其他部分没有。那么我怎么才能使用JQuery选择这5个H1。
这是我到目前为止的尝试(也是小提琴的JS小组):
$('.block section:parent h1')
$('.gc section >h1:first')
$('.block.gc section >h1')
$('.gc section >h1:first')
$('.block.gc section >h1')
$('.block.gc section >h1:first')
$('.gc section >h1:first-child')