我需要获取 div 的实际高度,但下面的所有 jquery 函数都会产生相同的值,该值比实际高度短约 10 个像素。我使用屏幕截图确认了实际高度,并在 Photoshop 中进行了测量。
需要什么方法来获得正确的高度?
alert($("#content-container").outerHeight(true));
alert($("#content-container").outerHeight());
alert($("#content-container").height());
#content-container {
width: 970px;
margin-right: auto;
margin-left: auto;
background-color: #FFFFFF;
height: auto;
min-height: 550px;
}
<body>
<div id="content-container">Content</div>
</body>
div 中有内容,但此处发布的内容太多。我想要容器的总高度,这样如果我对其应用边框,您可以测量从边框的顶部边缘到边框的底部边缘。现在我得到的高度比那个测量值小 10 像素。