JavaScript window.getComputedStyle

时间:2013-10-28 09:56:11

标签: javascript

如何将windows.getComputed样式作为int值?

默认情况下显示的方式是字符串:

var style = window.getComputedStyle(elem1, null);
alert(style.top); //Returns a string

2 个答案:

答案 0 :(得分:1)

parseInt()会将String作为整数返回给你,所以你的代码看起来应该是这样的:

var style = window.getComputedStyle(elem1, null);
alert(parseInt(style.top));

答案 1 :(得分:1)

parseFloat将为您提供保留小数位数的实数值:

parseFloat(style.top);