在 JavaScript 中格式化数字,类似于 C#
有没有一种简单的方法在 JavaScript 中格式化数字,类似于 C#(或 VB.NET)中通过 ToString("format_provider")
或 String.Format()
?
Is there a simple way to format numbers in JavaScript, similar to the formatting methods available in C# (or VB.NET) via ToString("format_provider")
or String.Format()
?
推荐答案
一般情况
- 在 JavaScript 中格式化数字
- 格式化数字以显示货币等等.李>
在 jQuery 中
- autoNumeric(一个不错的数字格式化程序和输入助手,支持 jQuery 1.5+ 的语言环境)
- jQuery 格式(Java SimpleDateFormat 和 NumberFormat)
- jquery-numberformatter(支持区域设置的数字格式化程序)
- autoNumeric (a decent number formatter & input helper with locale support for jQuery 1.5+)
- jQuery Format (a clientSide implementation of Java's SimpleDateFormat and NumberFormat)
- jquery-numberformatter (number formatter with locale support)
相关文章