如何将windows.getComputed样式作为int值?
默认情况下显示的方式是字符串:
var style = window.getComputedStyle(elem1, null);
alert(style.top); //Returns a string
答案 0 :(得分:1)
parseInt()
会将String作为整数返回给你,所以你的代码看起来应该是这样的:
var style = window.getComputedStyle(elem1, null);
alert(parseInt(style.top));
答案 1 :(得分:1)
parseFloat
将为您提供保留小数位数的实数值:
parseFloat(style.top);