JavaScriptのMath.ceeir()、Math.flor()、Math.round()、Math.pow()の3つの関数の理解

13780 ワード

以前は三つの関数の使用が混淆されていましたが、現在は三つの関数のプロトタイプ定義を理解することによって、三つの関数を覚えやすいです.
まとめをします.
1.Math.ceir()を上向きに整えるのに使います.
2.Math.flor()を下向きに整えます.
3.Math.round()私たちは数学でよく使われる四捨五入で整理します.
alert(Math.floor(5/2));
alert(Math.ceil(5/2));
4.べき乗
alert(Math.pow(10 , 2));//10 2  
5.js除法四捨五入は小数点以下の2桁の書き方を保留します.
DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">   
<html>    
<head>  
<title>floatDecimal.htmltitle>  
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">      
<meta http-equiv="description" content="this is my page">  
<meta http-equiv="content-type" content="text/html; charset=UTF-8">   
<script type="text/javascript">   
//          
//  :        ,     2      
function toDecimal(x) {   
  var f = parseFloat(x);    
if (isNaN(f)) {   
  return;    
}          
f = Math.round(x*100)/100;  
return f;        
}       
//   2   , :2,  2    00. 2.00          

function toDecimal2(x) {
var f = parseFloat(x);      
if (isNaN(f)) {   
 return false;     
}          
var f = Math.round(x*100)/100;  
var s = f.toString();       
var rs = s.indexOf('.');      
if (rs < 0) {   
 rs = s.length;      
 s += '.';   
            }       
while (s.length <= rs + 2) {   
 s += '0';       
}            
return s;   
}                     

function fomatFloat(src,pos){      
             return Math.round(src*Math.pow(10, pos))/Math.pow(10, pos);     
}          

//       
alert("  2   :" + toDecimal(3.14159267));  
alert("    2   :" + toDecimal2(3.14159267));
alert("  2   :" + toDecimal(3.14559267));   
alert("    2   :" + toDecimal2(3.15159267));   
alert("  2   :" + fomatFloat(3.14559267, 2));
alert("  1   :" + fomatFloat(3.15159267, 1));   
//        
alert("  2   :" + 1000.003.toFixed(2));          
alert("  1   :" + 1000.08.toFixed(1));   
alert("  1   :" + 1000.04.toFixed(1));     
alert("  1   :" + 1000.05.toFixed(1));    
//      
alert(3.1415.toExponential(2));      
alert(3.1455.toExponential(2));   
alert(3.1445.toExponential(2));  
alert(3.1465.toExponential(2));  
alert(3.1665.toExponential(1));   
//   n ,  n       
alert("       2 " + 3.1415.toPrecision(2));   
alert("       3 " + 3.1465.toPrecision(3));  
alert("       2 " + 3.1415.toPrecision(2));  
alert("       2 " + 3.1455.toPrecision(2));    
alert("       5 " + 3.141592679287.toPrecision(5));      
script>    
head>
<body>
This is my HTML page. <br>   
body> 
html>
 
転載先:https://www.cnblogs.com/mmzuo-798/p/6405890.html