HTML
<div class="page-content">
<div class="something">
<img class="image" src="something alt="something">
</div>
<div class="another-div-in-there"></div>
<div class="gallery">
//stuff in there
</div>
<div class="something">
<img class="image" src="something alt="something">
</div>
<div class="another-div-in-there"></div>
<div class="another-div-in-there"></div>
<div class="gallery">
//stuff in there
</div>
<div class="something">
<img class="image" src="something alt="something">
</div>
<div class="another-div-in-there"></div>
<div class="gallery">
//stuff in there
</div>
</div>
jQuery
$(".page-content .image").each(function(i) {
//$(this).closest('.gallery') ??
});
.gallery
各`.image``の「次へ」または「次へ」を検索/選択するにはどうすればよいですか?
したがって、each()
ループを実行するときは、最初の画像の最初のギャラリーが必要です。2番目を実行するとき、dom-treeの2番目の「下」にあるもの.image
を見つけたいと思います。.gallery
.image
そうする方法はありますか?