我需要用Javascript计算这个div的高度。
当我写这个剧本时:
function getMainDivHeight() {
var num = document.getElementById('up_container').style.height;
return num;
}
此脚本返回auto
我需要改变后div的高度。
谢谢! ! !
答案 0 :(得分:5)
您需要获取offsetHeight
属性:
function getMainDivHeight() {
var num = document.getElementById('up_container').offsetHeight;
return num;
}