将div属性存储到var中

时间:2016-05-07 00:18:28

标签: html var

如何获得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);

1 个答案:

答案 0 :(得分:0)

您可以使用$(" .top")。height();

这就是你要找的东西吗?