目录

JavaScript Number.toPrecision()

示例

将数字格式化为指定长度:

let num = 13.3714;
let n = num.toPrecision(2);
亲自试一试 »

设置一个小数字的格式:

let num = 0.001658853;
num.toPrecision(2);
num.toPrecision(3);
num.toPrecision(10);
亲自试一试 »

下面有更多示例。


描述

这个toPrecision()方法将数字格式化为指定长度。

添加小数点和空值(如果需要),以创建指定的长度。


语法

number.toPrecision(x)

参数

Parameter Description
x Optional.
The number of digits.
If omitted, the number is returned without any formatting.

返回值

类型 描述
一个字符串 格式化为指定精度的数字。


更多示例

将数字格式化为指定长度:

let num = 13.3714;
num.toPrecision(2);
num.toPrecision(3);
num.toPrecision(10);
亲自试一试 »

无格式:

let num = 13.3714;
num.toPrecision();
亲自试一试 »

浏览器支持

toPrecision()是 ECMAScript3 (ES3) 功能。

所有浏览器均完全支持 ES3 (JavaScript 1999):

Chrome Edge Firefox Safari Opera IE
Yes Yes Yes Yes Yes Yes