如何在extjs4.1中舍入浮点值

时间:2013-05-09 09:20:00

标签: extjs extjs4.1 sencha-architect extjs4.2

有人能告诉我如何在extjs4.1中舍入浮点值吗?例如,如果我的值为24.536,则需要将其舍入为24.54。如果我有24.534,我需要将其四舍五入到24.53。

1 个答案:

答案 0 :(得分:3)

如果你真的想要整数,请使用它:

number = Math.round(number * 100) / 100;

扩展

如果您想要显示四舍五入的数字 - 您可以使用ExtJs数字格式工具。试试这个:

//Set these once, right after Ext.onReady
Ext.util.Format.thousandSeparator = ' ';
Ext.util.Format.decimalSeparator = '.';

//Then this should round your number correctly:
Ext.util.Format.number(12345.00, '0,000.00'); //output 12 345.67