摘要:JavaScript的四捨五入、無條件捨去、無條件進位
	Math.round() 四捨五入
	Math.floor() 取小於這個數的最大整數
	Math.ceil() 取大於這個數的最小整數
alert(Math.round(12.3));			//12
alert(Math.round(12.5));			//13
alert(Math.round(12.52145));	                //13
alert(Math.round(12.52645 * 100) / 100);	//12.53
Y2J's Life:http://kimenyeh.blogspot.tw/