Javascript将大浮点数转换为字符串

发布于 2024-12-07 09:05:41 字数 735 浏览 1 评论 0原文

可能的重复:
如何避免在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

穿越时光隧道 2024-12-14 09:05:41

您可以在此处找到 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文