我正在使用此处找到的代码
jQuery – dynamic div height
<script type='text/javascript'> $(function(){ $('#center').css({'height':(($(window).height())-162)+'px'}); $(window).resize(function(){ $('#center').css({'height':(($(window).height())-162)+'px'}); }); }); </script>
现在,当您调整窗口大小时,高度更改工作正常,但如果向下滚动高度不会改变,这意味着窗口属性不包括超出浏览器窗口大小的内容,因此如果向下滚动高度不会增加
回答
使用文档而不是窗口
<script type='text/javascript'> $(function(){ $('#center').css({'height':(($(document).height())-162)+'px'}); $(window).resize(function(){ $('#center').css({'height':(($(document).height())-162)+'px'}); }); }); </script>
解决方法
也许:
$(document).height()/width()
你需要的是什么?由于窗口包含文档,窗口具有固定宽度,并限制您从文档中查看的内容.