JS金额“分”转换成“元”,金额上万时,以万为单位
程序员文章站
2022-07-14 22:58:37
...
由于后台传过来的数据是以“分”为单位的,所以这个时候要对金额进行转换,当金额上万时,以万为单位,并去除小数点后面如果有多余的零:
// 金额转换
function changeMoney(num) {
num = (num / 100).toFixed(2)
var regexp = /(?:\.0*|(\.\d+?)0+)$/
num = num.replace(regexp, '$1')
if (num > 10000) {
return (Math.round(parseInt(num) / 100) / 100) + '万'
} else {
return num
}
}
// 金额以万为单位 - 去除小数点多余的0
console.log('金额以万为单位::', changeMoney('231100'))
console.log('金额以万为单位::', changeMoney('2319102311'))
console.log('金额以万为单位::', changeMoney('23101023'))