在HTML中,元素的实际高度为
actualheight = height + top border + top margin + top padding + bottom margin + bottom border + bottom padding。
有没有办法在JQuery中获得这个?
答案 0 :(得分:2)
废话你说身高,而不是宽度,我会留下我的宽度答案,以供参考。
This page解释了如何使用身高。
.outerWidth()
- 获取匹配元素集中第一个元素的当前计算宽度,包括填充和边框。
.innerWidth()
- 获取匹配元素集中第一个元素的当前计算宽度,包括填充但不包含边框。
.width()
- 获取匹配元素集中第一个元素的当前计算宽度。