小程式實現數字每三位加逗號分隔符
阿新 • • 發佈:2020-12-26
技術標籤:微信小程式javascript小程式
<view class="money">¥ <text>{{money}}</text> </view>
js:
data: {
money: 1503.35,
},
onLoad: function (options) {
this.setData({
money: this.numFormat(this.data.money),
})
},
// 千分位分割
numFormat(num) {
var c = num.toFixed(num. toString().split(".")[1].length).replace(/(\d)(?=(\d{3})+\.)/g, '$1,')
return c;
},
效果圖