码迷,mamicode.com
首页 > Web开发 > 详细

js浮点数保留一位小数

时间:2015-11-24 16:07:25      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:

function changeTwoDecimal_f(x) {
var f_x = parseFloat(x);
if (isNaN(f_x)) {
alert(‘function:changeTwoDecimal->parameter error‘);
return false;
}
var f_x = Math.round(x * 10) / 10;
var s_x = f_x.toString();
var pos_decimal = s_x.indexOf(‘.‘);
if (pos_decimal < 0) {
pos_decimal = s_x.length;
s_x += ‘.‘;
}
while (s_x.length <= pos_decimal + 1) {
s_x += ‘0‘;
}
return s_x;
}

js浮点数保留一位小数

标签:

原文地址:http://www.cnblogs.com/php-linux/p/4991874.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!