计算元素高度并应用于其他元素

时间:2011-10-12 11:59:39

标签: jquery padding sticky-footer

使用'粘性页脚',我需要在内容div上使用底部填充等于页脚高度。

我想使用jQuery来获取页脚高度并将该值应用于内容div底部填充值。

希望有意义!

由于

3 个答案:

答案 0 :(得分:1)

var height = $('#footer').height();
$('#content').css('padding-bottom',height+'px');

我认为这是解决问题的方法

答案 1 :(得分:1)

var height = $('#footer').height();

$('.other').css('paddingBottom', height);

答案 2 :(得分:0)

你能粘贴一些代码吗? :)

<script type="text/javascript">
$(document).ready(function() {

    var footerheight = $('#footer').height();
    $('#contentarea').css('padding-bottom',footerheight+'px');

});
</script>