标签:return eve div type fixed mon prot vue 格式
//价格千分位格式化 function formatNum(num){ return (num.toFixed(2) + ‘‘).replace(/\d{1,3}(?=(\d{3})+(\.\d*)?$)/g, ‘$&,‘); }
$1、$2、...、$99 | 与 regexp 中的第 1 到第 99 个子表达式相匹配的文本。 |
$& | 与 regexp 相匹配的子串。 |
$` | 位于匹配子串左侧的文本。 |
$‘ | 位于匹配子串右侧的文本。 |
$$ | 直接量符号。 |
标签:return eve div type fixed mon prot vue 格式
原文地址:https://www.cnblogs.com/xfcao/p/9272326.html