我只是得到这个代码,它使所有具有 equal_height_1 类的div具有相同的高度。
我只需要知道它是否可以改进,是否适用于所有浏览器。感谢。
$(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);
});
});
答案 0 :(得分:1)
尝试
$('.equal_height_1').each(function() {
if($(this).height() > highestBox)
highestBox = $(this).height();
});
$('.equal_height_1').css("height",highestBox);
答案 1 :(得分:1)
我已经回答了类似的问题。 看看这里:Child div height same as sibling div Bootstrap 3?
找到一个示例