国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

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

2019-11-20 21:21:56
字體:
供稿:網(wǎng)友
復(fù)制代碼 代碼如下:

<!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);返回?cái)?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ù)值表達(dá)式
//如果pow的參數(shù)過大而引起浮點(diǎn)溢出,返回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ù)位數(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ù)
}
//另外一種四舍五入的方法,原理一樣。
//里面的兩個(gè)參數(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ù)位數(shù),四舍五入" onclick="f2();" />
<input type="button" value="cheng" onclick="cheng(123.456,2);" />
</body>
</html>
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 黄骅市| 盖州市| 通山县| 苏州市| 潞西市| 祥云县| 百色市| 县级市| 东城区| 临湘市| 灌云县| 兴国县| 涿鹿县| 定远县| 隆林| 遂川县| 长寿区| 中宁县| 龙里县| 义马市| 吴川市| 茂名市| 平定县| 永登县| 扶沟县| 饶河县| 宜兰市| 开封县| 松潘县| 洪泽县| 阿图什市| 彭山县| 阿拉善左旗| 开远市| 阿合奇县| 蓝山县| 突泉县| 泾源县| 永丰县| 平塘县| 格尔木市|