1

我的基本结构是这样的:

<body>
    <div id="controlBar"></div>
    <div id="placeholder"></div>
    <div id="pageHeader">
      <nav><ul><li><li></ul></nav>
    </div>
    <section id="pageContent"></section>
    <footer id="pageFooter"></footer>
</body>

其中#controlBar有一个固定的位置,并且与#placeholder具有相同的高度#controlBar。身体内的组合高度约为 400 像素。

我正在尝试使用 获取身体的高度$(document.body).height(),但返回的值与 相同$(window).height(),超过 900 像素。我也试过了$(document).height(),结果还是一样。

4

1 回答 1

1

If you'd like to know the actual size of the window you could check it like this:

window.innerHeight
于 2012-11-29T09:12:27.337 回答