我有一个div
,我没有为其设置任何样式,所以我在其中添加了一些内容,因此它的高度可能会增加
现在我想在没有getComputedStyle
方法的IE8或IE7中获取其高度
如果使用currentStyle
属性,则返回值为auto
,而不是数字;
如何获取IE中的高度?
最佳答案
不要使用getComputedStyle
,而是使用clientHeight或offsetHeight,这取决于您是否希望在边框中包含边框。
https://developer.mozilla.org/en-US/docs/Determining_the_dimensions_of_elements