简介 金额显示时,有的会习惯于千位进行间隔,如美元。 具体实现 s代表金额,n代表要保存到第多少小数位,默认为0(即整数)。 formatMoney(s, n) { if (!s) { return '' } if (n) { n = n > 0 && n <= 20 ? n : 2