当前位置: 代码迷 >> JavaScript >> js 格式化数目字(处理钱数时)
  详细解决方案

js 格式化数目字(处理钱数时)

热度:378   发布时间:2013-08-16 14:29:57.0
js 格式化数字(处理钱数时)
function formatCurrency(num) {
	if (!num)
		return "0.00";
	num = num.toString().replace(/\$|\,/g, '');//去除$符号
	if (isNaN(num))
		num = "0.00";
	sign = (num == (num = Math.abs(num)));
	num = Math.floor(num * 100 + 0.50000000001);
	cents = num % 100;
	num = Math.floor(num / 100).toString();
	if (cents < 10)
		cents = "0" + cents;
	for ( var i = 0; i < Math.floor((num.length - (1 + i)) / 3); i++)
		num = num.substring(0, num.length - (4 * i + 3)) + ','+ num.substring(num.length - (4 * i + 3));
	return (((sign) ? '' : '-') + '' + num + '.' + cents);
}

?

  相关解决方案