以下代码输出style="height....
但我希望它输出style="min-height.....
$( window ).load(function() {
boxes = $('.equals');
minHeight = Math.max.apply(
Math, boxes.map(function() {
return $(this).height();
}).get());
boxes.height(minHeight);
});