假设我有如下 HTML:
<div class="foo-container">
<div class="foo">
<div class="foo-child">
<span>The Important Label</span>
</div>
</div>
<div class="elem-to-manipulate">
<p>I want to manipulate the style in this because it's the sibling of "The Important Label"</p>
</div>
</div>
p基于其同级元素具有 text 的事实,我如何定位该元素The Important Label。
我得到了类似的东西
$('.root').find('.foo > .foo-child > span:contains("The Important Label")')
这成功地让我获得了span元素。但现在我如何获取p兄弟中的元素div?有没有办法告诉 find 哪个父母要得到兄弟姐妹?
隔江千里
相关分类