Javascriptで数値の四捨五入 var i = 1.2; //四捨五入 Math.round(i); //切り上げ Math.ceil(i); //切り捨て Math.floor(i); 高瀬 裕介ハック2014.01.17 422