當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。