当前位置: 代码迷 >> JavaScript >> javascript 四舍五入保留n位小数
  详细解决方案

javascript 四舍五入保留n位小数

热度:372   发布时间:2012-08-22 09:50:34.0
javascript 四舍五入保存n位小数

?

/**
		  * 四舍五入,保留位数为
		  * @param numberRound 
		  */
		function roundFun(numberRound,roundDigit){   //四舍五入,保留位数为roundDigit    
			if (numberRound>=0){  
				var tempNumber = parseInt((numberRound * Math.pow(10,roundDigit)+0.5))/Math.pow(10,roundDigit);  
				return tempNumber;  
			}else{  
				numberRound1 = -numberRound  
				var tempNumber = parseInt((numberRound1 * Math.pow(10,roundDigit)+0.5))/Math.pow(10,roundDigit);  
				return -tempNumber;  
			}  
		}  
?
  相关解决方案