次のようなリストがあります。
<div id="post-1" class="post"></div>
<div id="post-2" class="post"></div>
<div id="post-3" class="post"></div>
<div id="post-4" class="post"></div>
<div id="post-5" class="post"></div>
#post-1 と #post-2 を選択して何かしたい。次に、#post-3 と #post-4 を選択して何かを実行し、次に最後の 1 つを取得して何かを実行します。これは多くの div にまたがるので、ある種のループにする必要があります。
擬似コードは次のようになります。
var maxHeight = 0;
jQuery('.post-block:two-at-time').each(function(){
var height = jQuery(this).height();
if( height > maxHeight) {
maxHeight = height;
}
});
jQuery('.post-block:two-at-time').height(maxHeight);
これを行う最善の方法についてのアイデアはありますか? ありがとう!