我很困惑为什么这么少的 html + css 会让我的 $(document).height() 变得很大。似乎溢出容器没有完全工作。这是一个显示错误行为的 jsbin:http: //jsbin.com/omokin/1
<html>
<head>
<style>
#container {overflow:auto;height:500px;width:300px;}
#big {height:90000px;background-color: pink;}
</style>
</head>
<body>
<div id="container">
<div id="big">
</div>
<div style='visibility:hidden; position:absolute;'>x</div>
</div>
</body>
</html>