在js中有时要用到取float数字的小数点后两位的情况。var num=10/3; function f(num,n){ return parseInt(num*Math.pow(10,n)+0.5,10)/Math.pow(10,n); } alert(f(num,2));登录后复制