一、toFixed()方法,它可以四舍五入到小数点后指定位数
var shuzi = "10.383"
document.write(shuzi.toFixed(2))
在js中会输出:10.38 toFixed(2)表示四舍五入到小数点的后两位.
二、round()方法,不同于toFixed,它是将小数四舍五入位整数
Math.round(0.80)
输出为:1
虽然round方法只能四舍五入为整数,但是可以先将指定位数先化为整数进行四舍五入操作,然后在重新除以化为整数的倍数恢复原来的数值即可获得指定位数的小数.
var ws=2
var wsbs=Math.pow(10,ws)
var shuzi = 18.138571
document.write( Math.round(shuzi * wsbs ) / wsbs )
ws为指定小数的位数,wsbs为10的ws次方,为了将小数先化为整数好让round函数先四舍五入,然后再转为原来的大小.
js代码中除了round方法能够将小数转为整数,还有floor()向下取整即正数向下舍入,负数向更大的负数舍入.
Math.floor(0.80)//0
Math.floor(-6.3)//-7
ceil()与floor()相反,他是向上面取整,正数向更大的整数取整,负数向更小的负数取整.
Math.ceil(0.80)//1
Math.ceil(-7.9)// -7
同理,它们都可以像round方法一样,通过先将小数化为整数处理后再将其重新转为小数,只需要将上面代码中的Math.round分别改为Math.ceil或Math.floor.
三、通过substring来直接截取,它可以获得指定位数的小数,不对多余的小数进行舍入操作。
var ws=2
var shuzi = 19.138578
document.write(shuzi.substring(0,s.(".")+ws+1))
首先用到indexOf方法获取小数点再数字中第一次出现的位置,然后加上需要保留的小数点后面的位数以及小数点,通过substring提取字符从第一为到指定位数的字符.
四、正则来截取小数点后面的位数
var ws=2
var shuzi = 19.138578
blsz = num.replace("/([0-9]+\.[0-9]{"+ws+"})[0-9]*/","$1")
alert(blsz)
五、同上也是正则方法
var shuzi = 19.138578
var ws = 2
var blsz = new RegExp("\d+\.\d{" + ws + "}","gm")
alert(shuzi.match(blsz))
两个正则区别在于使用的正则函数方法不同,它们都额可以得到指定位数的小数.
以上就是在js代码中比较实用的几种处理小数点后面的小数位数的方式.
JS中Math函数的常用方法
Math是数学函数,但又属于对象数据类型typeof Math=>‘object’
console.dir(Math)查看Math的所有函数方法。
1,Math.abs()获取绝对值
Math.abs(-12) = 12
2,Math.ceil() and Math.floor()向上取整和向下取整
console.log(Math.ceil(12.03))//13
console.log(Math.ceil(12.92))//13
console.log(Math.floor(12.3))//12
console.log(Math.floor(12.9))//12
3,Math.round()四舍五入
注意:正数时,包含5是向上取整,负数时包含5是向下取整。
1、Math.round(-16.3) = -16
2、Math.round(-16.5) = -16
3、Math.round(-16.51) = -17
4,Math.random()取[0,1)的随机小数
案例1:获取[0,10]的随机整数
console.log(parseInt(Math.random()*10))//未包含10
console.log(parseInt(Math.random()*10+1))//包含10
案例2:获取[n,m]之间的随机整数
Math.round(Math.random()*(m-n)+n)
5,Math.max() and Max.min()获取一组数据中的最大值和最小值
console.log(Math.max(10,1,9,100,200,45,78))
console.log(Math.min(10,1,9,100,200,45,78))
6,Math.PI获取圆周率π 的值
console.log(Math.PI)
7,Math.pow() and Math.sqrt()
Math.pow()获取一个值的多少次幂
Math.sqrt()对数值开方
Math.pow(10,2) = 100
Math.sqrt(100) = 10