获取css最大值作为数字而不是字符串?
2022-08-30 04:46:26
在 jQuery 中,您可以将相对于父级的顶部位置作为数字获取,但如果在 中设置了 css,则无法将其作为数字获取。
假设我有以下情况: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