我有一个这样的列表:
<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 AND #post-2,然后做点什么。然后选择#post-3 AND #post-4 并做某事,然后抓住最后一个并做某事。这将超过很多 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);
关于如何最好地做到这一点的任何想法?谢谢!