在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));登入後複製