1

我有一个绝对位于页面右下角的 div。问题是如果 div 包含太多内容,那么内容的顶部会消失在页面顶部下方。我想要做的是将div的最大高度设置为等于身体高度减去170px。

我在网上尝试了几个教程,但没有走得太远:

到目前为止,我得到的是:

<script>
var x, y, z;
y = 170;
function getDocHeight() {
    var x = document;
    return Math.max(
        Math.max(x.body.scrollHeight, x.documentElement.scrollHeight),
        Math.max(x.body.offsetHeight, x.documentElement.offsetHeight),
        Math.max(x.body.clientHeight, x.documentElement.clientHeight)
    );
};
z = x-y;//document height minus 170. this is the height we need for the info div
document.write (z);
document.write (y);
document.write (x);
</script>

上面的输出是NaN170undefined所以我什至没有尝试设置 div id="info" 的高度

非常感谢所有帮助。

肖恩

4

1 回答 1

1

如果您使用的是 JQuery,则可以执行以下操作:

z = $("body").height() - 170;
于 2012-04-10T15:12:34.327 回答