当前位置:Gxlcms > JavaScript > javascript数字格式化输出的实现代码_javascript技巧

javascript数字格式化输出的实现代码_javascript技巧

时间:2021-07-01 10:21:17 帮助过:7人阅读

代码如下:

输出 123.00
alert(format(123, '0.##')) //输出 123
alert(format(123, '0000.00 ')) //输出 0123.00
alert(format(123456, '###,###.00')) //输出 123,456.00

人气教程排行