最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Javascript四舍五入Math.round()與Math.pow()使用介紹

 更新時間:2013年12月27日 10:35:35   作者:  
本文為大家介紹下Javascript中的四舍五入Math.round()與Math.pow()的使用,感興趣的朋友不要錯過
復制代碼 代碼如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Javascript四舍五入(Math.round()與Math.pow())</title>
<script type="text/javascript">
//Math.round(x);返回數(shù)字最接近的整數(shù),四舍五入取整數(shù),即舍去小數(shù)部分
function f(){
alert(Math.round(123.567));
alert(Math.round(123.456));
}
//Math.pow(x,y);返回底數(shù)的指定次冪
//返回以x的y次冪,等同于x的y次冪的數(shù)值表達式
//如果pow的參數(shù)過大而引起浮點溢出,返回Infinity
function f1(){
alert(Math.pow(2,10));//2的10次方等于1024
alert(Math.pow(1024,0.1));//1024的0.1次方等于2
alert(Math.pow(99,9999));//溢出則返回Infinity
}
/*Javascript設置要保留的小數(shù)位數(shù),四舍五入。
*ForDight(Dight,How):數(shù)值格式化函數(shù),Dight要格式化的 數(shù)字,How要保留的小數(shù)位數(shù)。
*這里的方法是先乘以10的倍數(shù),然后去掉小數(shù),最后再除以10的倍數(shù)。
*/
function ForDight(Dight,How){
Dight = Math.round(Dight*Math.pow(10,How))/Math.pow(10,How);
return Dight;
}
function f2(){
alert(ForDight(12345.67890,3));//保留三位小數(shù)
alert(ForDight(123.99999,4));//保留四位小數(shù)
}
//另外一種四舍五入的方法,原理一樣。
//里面的兩個參數(shù):num就是要轉(zhuǎn)換的數(shù)據(jù)。n為要轉(zhuǎn)換的位數(shù)
//cheng(123.456,2);//保留兩位小數(shù)
function cheng(num,n){
var dd=1;
var tempnum;
for(i=0;i<n;i++){
dd*=10;
}
tempnum = num*dd;
tempnum = Math.round(tempnum);
alert(tempnum/dd);
}
</script>
</head>
<body>
<input type="button" value="round" onclick="f();" />
<input type="button" value="pow" onclick="f1();" />
<input type="button" value="設置要保留的小數(shù)位數(shù),四舍五入" onclick="f2();" />
<input type="button" value="cheng" onclick="cheng(123.456,2);" />
</body>
</html>

相關文章

最新評論

白水县| 阳东县| 盐山县| 扶绥县| 临沭县| 平利县| 临西县| 太白县| 仪陇县| 静海县| 突泉县| 明溪县| 临高县| 蕉岭县| 蒙自县| 吉林省| 兰西县| 桐城市| 封丘县| 镇赉县| 左云县| 敖汉旗| 沙湾县| 屏东市| 临夏市| 喀什市| 儋州市| 宝应县| 康保县| 汉源县| 湘乡市| 东辽县| 四川省| 麻城市| 庆安县| 辰溪县| 辽阳县| 浦县| 郎溪县| 神池县| 南平市|