Javascript将大浮点数转换为字符串
可能的重复:
如何避免在 JavaScript 中使用科学记数法?< /a>
Javascript:如何在显示大数字时避免使用科学记数法< /a>
我有这个代码:
var f = 1000000000000000000000; // 1e+21
var fstr = f.toString(); // return "1e+21"
但我不需要科学数字表示。我想在“fstr”变量中获取“1000000000000000000000”。我怎样才能得到它?
Possible Duplicate:
How to avoid scientific notation for large numbers in javascript?
Javascript: how to avoid scientific notation when displaying large unumber
I have this code:
var f = 1000000000000000000000; // 1e+21
var fstr = f.toString(); // return "1e+21"
But I don't need scientific number representation. I want to get "1000000000000000000000" in 'fstr' variable. How I can get it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在此处找到 util 脚本:
http://snippets.dzone.com/posts/show/2206
页面底部还有一个简短的示例。
You can find an util script here:
http://snippets.dzone.com/posts/show/2206
There is also a short example at the bottom of the page.