需求:数字金额,按照三位一个逗号显示。既 千 百万 十亿
或者是按照固定的几位一个逗号展示。
方法1:
<script type= "text/javascript">//保留三位小数,toLocaleString() 方法可把一个 Number 对象转换为本地格式的字符串。var num_s = "1232134456.546 ";alert(parseFloat(num_s).toLocaleString());</script>
方法2:小数点后的00也会保存显示
<script type="text/javascript">// 小数点位不限制function format_number(nStr ){nStr += ''; x = nStr.split('.'); x1 = x[0]; x2 = x.length > 1 ? '.' + x[1] : ''; var rgx = /(\d+)(\d{3})/; //3就是间隔的位数while (rgx.test(x1)) { x1 = x1.replace(rgx, '$1' + ',' + '$2'); } return x1 + x2; }var a="53669988.000";alert(format_number(a));alert(format_number("wahh"));alert(format_number(0));alert(format_number(6698.0023));
</script>