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
ます。
どうすればこれを達成できますか?