我的页面看起来像这样
<h4></h4>
<table></table> < want this
... < want all these tables
<table></table> < want this
<h4></h4>
<table></table> < not this
... < not these
<table></table> < not this
我正在尝试<h4>
使用此 jQuery 选择器仅选择第一个元素下的表
$("h4:eq(0) ~ table.someClass:not(h4:eq(1) ~ table.somaClass)")
它不起作用 - 返回所有表。