如何将包含科学记数法的字符串转换成正确的 JavaScript 数值格式?


要转换带有科学记数法的字符串,请使用 Number 函数。将值传递给此函数。

例子

您可以尝试运行以下代码来将字符串转换为正确的数字格式 −

实时演示

<!DOCTYPE html>
<html>
   <body>
      <script>
         document.write("String with Scientific Notation converted below:<br>");
         document.write(Number("7.53245683E7"));
      </script>
   </body>
</html>

输出

String with Scientific Notation converted below:
75324568.3

更新于:17-6 月-2020

1 千 + 浏览

开启你的 职业

完成学位认证课程

开始
广告