谁能告诉我如何在浏览器最大化时获得最大可用高度。不是屏幕、avilHeight 或 document.height。
<script type="text/javascript">
document.getElementById("wrapper").style.height=screen.availHeight + "px";
</script>
对于我的分辨率(1366x768)屏幕,avilHeight 或 document.height 返回 728px,这是浏览器高度,但我只想要最大文档高度。