我有一个div
并且我没有设置任何样式,然后我将一些内容放入其中,因此它的高度可能会增长
现在我想在IE8或IE7中获得它的高度,它没有getComputedStyle
方法
如果我使用currentStyle
属性,则返回值为auto
,而不是数字;
如何在IE中获得高度?
答案 0 :(得分:2)
请勿使用getComputedStyle
,使用clientHeight或offsetHeight,具体取决于您是否希望在总数中包含边框。
https://developer.mozilla.org/en-US/docs/Determining_the_dimensions_of_elements