我正在尝试像这样访问 css 属性:
.box {
position: absolute;
background-color: red;
height: 10px;
width: 10px;
}
JS:
var height = $('.box').css('height');
我知道,上面的代码是错误的,这实际上不起作用,因为.box
在 DOM 中不可用。
我尝试的另一件事:
var height = $("<span class='box'></span>").css('height');
我的问题是:如何在.box
没有类的 DOM 中没有任何元素的情况下获得高度box
?