我已将div高度设置为auto,当我计算时,它将结果设为0
这是我的css
.final_event_detail {
background: #000 none repeat scroll 0 0;
height: auto;
position: absolute;
width: 1700px;
opacity:0.9;
z-index:1;
border-radius:5px;
}
这是JQ
var mydivheight = $(".final_event_detail").height();
alert(mydivheight);
我尝试了innerHeight
和outerHeight
但没有运气。