Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试使用 jQuery.height()函数来获取元素的高度,但它似乎忽略了填充和边距。
.height()
如何使用 Javascript 和/或 jQuery 获取元素框的大小?
使用外部高度
http://api.jquery.com/outerHeight/
您是否能够在另一个 div 中使用填充/边距包装 div 并获取容器 div 的高度?
<div id="container"> <div id="divWithPadding"> content </div> </div>
使用externalHeight() 的示例;
http://jsfiddle.net/HruqF/2/