欢迎访问服务器技术网-www.fuwuqijishu.com

JavaScript toFixed() 方法

JavaScript fuwuqijishu 2年前 (2022-09-04) 16次浏览 0个评论 扫描二维码
文章目录[隐藏]

JavaScript toFixed() 方法

JavaScript Number 对象

实例

把数字转换为字符串,结果的小数点后有指定位数的数字:

var num = 5.56789;
var n=num.toFixed(2);

n 输出结果:

var num = 5.56789;
document.write(num.toFixed(2));


定义和用法

toFixed() 方法可把 Number 四舍五入为指定小数位数的数字。


浏览器支持

所有主要浏览器都支持 toFixed() 方法


语法

number.toFixed(x)

参数值

参数 描述
x 必需。规定小数的位数,是 0 ~ 20 之间的值,包括 0 和 20,有些实现可以支持更大的数值范围。如果省略了该参数,将用 0 代替。

返回值

类型 描述
String 小数点后有固定的 x 位数字

技术细节

JavaScript 版本: 1.5


更多实例

实例

将一个数字,不留任何小数:

var num = 5.56789;
var n=num.toFixed();

n 输出结果:

var num = 5.56789;
document.write(num.toFixed());

实例

转换一个比指定数小的小数点后的位数的数字:

var num = 5.56789;
var n=num.toFixed(10);

n 输出结果:

var num = 5.56789;
document.write(num.toFixed(10));


JavaScript Number 对象

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2300.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900