在jQuery中,您可以将相对于父对象的最高位置作为一个数字来获取,但是如果将css top值设置为,则无法将其作为一个数字来获取px
。
说我有以下几点:
#elem{
position:relative;
top:10px;
}
<div>
Bla text bla this takes op vertical space....
<div id='elem'>bla</div>
</div>
$('#elem').position().top; //Returns the number (10+(the vertical space took by the text))
$('#elem').css('top'); //Returns the string '10px'
但是我想将css top属性作为数字10
。
一个人将如何实现这一目标?