如何使用jquery使用String.localeFormat()将数字格式化为货币格式?

时间:2012-07-17 07:30:47

标签: jquery

号码56675.456

我想使用格式{0:$###.##}

格式化此数字

在JQuery中使用String.localeFormat()

预期结果:$56675.46

1 个答案:

答案 0 :(得分:1)

function convert(num) {    
  return "$" + (num.toFixed(2));
}

convert(56675.456)

demo