重写toFixed方法. function toFixed(num, precision) {. precision = Math.pow(10, precision);. return Math.floor(num * precision) / precision;. }.
確定! 回上一頁