2014-03-25 75 views
-3

我剛剛得到這個代碼,它使所有的div都與equal_height_1類具有相同的高度。使divs具有相同高度的代碼?

我只需要知道它是否可以改進,以及它是否可以在所有瀏覽器中使用。謝謝。

$(window).load(function() { 

    var highestBox = 0; 

    $('.equal_height_1').each(function() { 
      if($(this).height() > highestBox) 
     highestBox = $(this).height(); 
     }); 

     $('.equal_height_1').each(function() { 
      $(this).height(highestBox); 
    }); 

    }); 

回答

1

嘗試

$('.equal_height_1').each(function() { 
    if($(this).height() > highestBox) 
highestBox = $(this).height(); 
    }); 

$('.equal_height_1').css("height",highestBox);