如何获得div的高度并存储到变量中?
.top {
content:url(../images/top480.jpg);
z-index:0;
border-bottom:1px solid #000000;
width:100%;
}
/* The weight is variable, is not fixed*/
我正在尝试这样的事情:
var hou = $(".top").width();
window.alert(hou);
答案 0 :(得分:0)
您可以使用$(" .top")。height();
这就是你要找的东西吗?