当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript Number.toFixed()用法及代码示例


Number 对象的 toFixed() 函数接受一个代表要在小数点后显示的点数的数字,并相应地显示当前数字。

用法

其语法如下

num.toFixed(num);

示例

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var num = Math.PI;
      result = num.toFixed(4);
      document.write("Fixed point notation of the given number is:" + result);
   </script>
</body>
</html>

输出

Fixed point notation of the given number is:3.1416

示例

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var num = Math.PI;
      document.write("Fixed point notation of the given number is:" + num.toFixed(4));
      document.write("<br>");
      var num = 2.13e+15;
      document.write("Fixed point notation of the given number is:" + num.toFixed(4));
   </script>
</body>
</html>

输出

Fixed point notation of the given number is:3.1416
Fixed point notation of the given number is:2130000000000000.0000

相关用法


注:本文由纯净天空筛选整理自Samual Sam大神的英文原创作品 Number.toFixed() function in JavaScript。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。