如何强制将数字显示为指数形式?
使用 toExponential() 方法可以强制将数字显示为指数形式,即使该数字อยู่ใน JavaScript 通常使用标准记数法显示的范围内也是如此。
以下是参数 -
- fractionDigits - 一个整数,指定小数点后的数字个数。默认为可以指定数字所需的尽可能多的数字。
示例
你可以尝试运行以下代码,以强制将数字显示为指数函数 -
<html> <head> <title>Javascript Method toExponential()</title> </head> <body> <script> var num=77.1234; var val = num.toExponential(); document.write("num.toExponential() is : " + val ); document.write("<br />"); val = num.toExponential(4); document.write("num.toExponential(4) is : " + val ); document.write("<br />"); val = num.toExponential(2); document.write("num.toExponential(2) is : " + val); document.write("<br />"); val = 77.1234.toExponential(); document.write("77.1234.toExponential()is : " + val ); document.write("<br />"); val = 77.1234.toExponential(); document.write("77 .toExponential() is : " + val); </script> </body> </html>
广告