windows.getComputed スタイルを int 値として取得するにはどうすればよいですか?
デフォルトで表示される方法は文字列です。
var style = window.getComputedStyle(elem1, null);
alert(style.top); //Returns a string
windows.getComputed スタイルを int 値として取得するにはどうすればよいですか?
デフォルトで表示される方法は文字列です。
var style = window.getComputedStyle(elem1, null);
alert(style.top); //Returns a string
parseFloat
小数点以下が保持された数値として実際の値が得られます。
parseFloat(style.top);
parseInt()
will return you the String as an Integer, so your code should look somehow like this:
var style = window.getComputedStyle(elem1, null);
alert(parseInt(style.top));