码迷,mamicode.com
首页 > 其他好文 > 详细

保留小数点后两位,四舍五入与不四舍五入

时间:2017-10-10 13:15:40      阅读:449      评论:0      收藏:0      [点我收藏+]

标签:put   oat   log   ntb   script   点击   inpu   ext   doc   

<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<title>Document</title>
</head>

<body>
<input id="val" type="text">
<input id="btn" type="button" value="点击转换">
<script>
var btn = document.getElementById("btn");
btn.onclick=function(){
var val = document.getElementById(‘val‘).value;
var x = changeTwoDecimal_f(val);
console.log(x);
}
function changeTwoDecimal_f(x) {   
var f_x = parseFloat(x);     
var f_x = Math.floor(x * 100) / 100;   //不四舍五入
// var f_x = Math.round(x * 100) / 100;   //四舍五入
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 + 2) { s_x += ‘0‘; }   
return s_x;
}
</script>
</body>

</html>

保留小数点后两位,四舍五入与不四舍五入

标签:put   oat   log   ntb   script   点击   inpu   ext   doc   

原文地址:http://www.cnblogs.com/niuniuniu/p/7644608.html

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