javascript学习笔记(四) Number 数字类型
更新时间:2012年06月19日 15:49:04 作者:
数字格式化方法toFixed()、toExponential()、toPrecision(),三个方法都四舍五入
toFixed() 方法指定小数位个数
toExponential() 方法 用科学计数法表示数,参数指定小数位个数
toPrecision() 方法自动判断调用toFixed()或toExponential()方法,参数指定所有数的位数
var num = 99;
alert(toFixed(2)); //99.00
alert(toExponential(1)); //9.0e+1
alert(toPrecision(1)); //9.0e+1
alert(toPrecision(2)); //99
alert(toPrecision(3)); //99.0
toExponential() 方法 用科学计数法表示数,参数指定小数位个数
toPrecision() 方法自动判断调用toFixed()或toExponential()方法,参数指定所有数的位数
复制代码 代码如下:
var num = 99;
alert(toFixed(2)); //99.00
alert(toExponential(1)); //9.0e+1
alert(toPrecision(1)); //9.0e+1
alert(toPrecision(2)); //99
alert(toPrecision(3)); //99.0
相关文章
javascript instanceof 与typeof使用说明
instanceof和typeof都能用来判断一个变量是否为空或是什么类型的变量。2010-01-01
最新评论