格式金额,默认保留两位小数,并格式化为千分位

更新时间:2023-07-26 18:48:32 阅读: 评论:0

格式⾦额,默认保留两位⼩数,并格式化为千分位项⽬场景:会飞的松鼠
商城类项⽬中⼤多需要格式化⾦额,后缀保留两位⼩数,并且千元之后加上千分位符号
例⼦:32,131.00 这种⾦额,贴上js代码,可以新建⼀个js引⽤就⾏
一片迷茫解决⽅案:
//格式⾦额,默认保留两位⼩数,并格式化为千分位
function formatMoney(number, decimals, dec_point, thousands_p, roundtag){
/*
* 参数说明:
时空港* number:要格式化的数字
* decimals:保留⼏位⼩数
* dec_point:⼩数点符号
* thousands_p:千分位符号
* roundtag:舍⼊参数,默认 "ceil" 向上取,"floor"向下取,"round" 四舍五⼊
* */
if (!number){
number = 0;
}
if (!decimals){
decimals = 2;//默认保留2位⼩数
}
if (!dec_point){
海鲜酱的用途
dec_point = '.';
端午节的作文
}
if(!thousands_p){
thousands_p = ',';
}
if(!roundtag){
roundtag = 'round';
}
number = (number + '').replace(/[^0-9+-Ee.]/g, '');
roundtag = roundtag || "ceil"; //"ceil","floor","round"
var n = !isFinite(+number) ? 0 : +number,
prec = !isFinite(+decimals) ? 0 : Math.abs(decimals),
p = (typeof thousands_p === 'undefined') ? ',' : thousands_p,
dec = (typeof dec_point === 'undefined') ? '.' : dec_point,
s = '',
菌菇排骨汤toFixedFix = function (n, prec){
var k = Math.pow(10, prec);
return '' + parFloat(Math[roundtag](parFloat((n * k).toFixed(prec * 2))).toFixed(prec * 2)) / k;
};
s = (prec ? toFixedFix(n, prec):'' + und(n)).split('.');
var re = /(-?\d+)(\d{3})/;
while (re.test(s[0])){
s[0] = s[0].replace(re, "$1" + p + "$2");
}
if ((s[1] || '').length < prec){
稠州游戏s[1] = s[1] || '';
s[1] += new Array(prec - s[1].length + 1).join('0');
}
return s.join(dec);
}
excel滚动条export{
formatMoney
}
vue中引⽤使⽤⽅法:
main.js:
import * as moneyUtils from “./utils/money”;//引⼊js Utils = moneyUtils
使⽤:
标签中引⽤:
{{moneyUtils.formatMoney(Discount)}}

本文发布于:2023-07-26 18:48:32,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/82/1118636.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:默认   符号   保留   场景   类项
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图