js金额转换万元显示

2024年07月26日 建站教程

formatNumber(num) {
  num = Number(num);
  if (num == 0) {
    return num + "";
  } else {
    if ((num / 10000).toFixed(2) == 0) {
      //小于100的保留4位
      return (num / 10000).toFixed(4);
    } else {
  	//大于100的保留2位
      return (num / 10000).toFixed(2);
    }
  }
}

本文链接:http://so.lmcjl.com/news/9198/

展开阅读全文
相关内容