如何计算div的高度,定义为'height = auto'

时间:2011-05-02 19:31:11

标签: javascript asp.net ajax

我需要用Javascript计算这个div的高度。

当我写这个剧本时:

function getMainDivHeight() {
    var num = document.getElementById('up_container').style.height;
    return num;
}

此脚本返回auto

我需要改变后div的高度。

谢谢! ! !

1 个答案:

答案 0 :(得分:5)

您需要获取offsetHeight属性:

function getMainDivHeight() { 
 var num = document.getElementById('up_container').offsetHeight; 
 return num; 
}