JavaScript 要作四捨五入可以使用Math.round(數值), 但若要取到小數點第2位或其它位數該怎麼作? 我在網路上找到一個快速的寫法: EX: 四捨五入取到小數第2位 Math.round(數值*100)*100 EX: 到小數第3位 Math.round(數值*1000)*1000 以此類推囉... 資料來源: http://www.wretch.cc/blog/hosulu/5278873 Math Object參考資料: http://www.w3schools.com/jsref/jsref_obj_math.asp