.content-block
包含动态文本。在浏览器上调整高度的高度.content-block
计算并应用于.content-block
页面上的其他高度。以下伪代码在大多数浏览器中工作,但在尺寸小于 320x480 的 chrome 浏览器中,它不起作用并且内容与其他块重叠。
function getMaxHeight(){
return maxHeight = Math.max.apply(null, $(".content-block").map(function (){
return $(this).height();
}).get());
}
$(window).resize(function(){
$('.content-block').css('height', 'auto');
$('.content-block').css('height', getMaxHeight);
});
$('.content-block').css('height', getMaxHeight);