在javascript中用逗号格式化数字变量的最佳方法是什么
我遇到了格式化 javascript 数字的问题。 javascript 中的 csharp 代码相当于什么:
var cSharpNumber = 10000;
string formattedNumber = cSharpNumber.ToString("#,###"); //this should show 10,000
如果可能的话,我想避免引入其他插件
I am running into an issue formatting a javascript number. What is the equivalent of this csharp code in javascript:
var cSharpNumber = 10000;
string formattedNumber = cSharpNumber.ToString("#,###"); //this should show 10,000
I would like to avoid having to bring in other plugins if possible
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
JavaScript 没有提供任何现成的方法来执行此操作,因此您必须使用一些自定义代码。快速谷歌搜索发现了这个,这对我来说看起来不错:
http://www.mredkj.com /javascript/nfbasic.html
JavaScript doesn't provide any way to do this out of the box, so you will have to use some custom code. A quick google search turned up this, which looks good to me:
http://www.mredkj.com/javascript/nfbasic.html
我发现该代码很长一段时间以来一直工作正常: http://phpjs.org/functions/ number_format:481
I found that code a long time and it has been working fine since : http://phpjs.org/functions/number_format:481