強制保留2位小數,不足補0 */ function toDecimal(x) { var f = parseFloat(x); if (isNaN(f)) { return false; } var f = Math.round(x*100)/100; ...
確定! 回上一頁