Restoration
1/30/2017 - 7:27 AM

jQueryでcssを取得する

jQueryでcssを取得する

.cssメソッドでつなでて、取得したいcssの名前を入れることで取得ができる 例として、cssのtopを取得する 300pxかかっているので300pxと取得できる pxを取り除きたい場合は、replaceを使ってpxを置き換える。

<script>
jQuery(function($){
    var targetBox = $('#targetBox').css('top').replace('px','');
    targetBox = parseInt(targetBox,10);
});
</script>
<div id="targetBox" style="top: 300px;"></div>