-1

次のコード出力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);

});
4

2 に答える 2