JavaScript Math(算數) 對象
JavaScript Math(算數) 物件
Math(算數)物件的功能是:執行常見的算數任務。
如何使用round():
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> </head> <body> <p id="demo">单击按钮舍入与“9.5”最接近的整数</p> <button onclick="myFunction()">点我</button> <script> function myFunction(){ document.getElementById("demo").innerHTML=Math.round(9.5); } </script> </body> </html>
如何使用random() 來傳回0 到1 之間的隨機數:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> </head> <body> <p id="demo">点击按钮显示一个随机数</p> <button onclick="myFunction()">点我</button> <script> function myFunction(){ document.getElementById("demo").innerHTML=Math.random(); } </script> </body> </html>
如何使用max() 來傳回兩個給定的數中的較大的數。 (在 ECMASCript v3 之前,此方法只有兩個參數。):
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> </head> <body> <p id="demo">单击按钮返回5到10之间的最大值。</p> <button onclick="myFunction()">点我</button> <script> function myFunction(){ document.getElementById("demo").innerHTML=Math.max(5,10); } </script> </body> </html>
如何使用 min() 來傳回兩個給定的數中的較小的數。 (在 ECMASCript v3 之前,此方法只有兩個參數。)
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> </head> <body> <p id="demo">单击按钮返回5到10之间最小的值。</p> <button onclick="myFunction()">点我</button> <script> function myFunction(){ document.getElementById("demo").innerHTML=Math.min(5,10); } </script> </body> </html>
Math 物件
Math(算數)物件的作用是:執行普通的算數任務。
Math 物件提供多種算數值類型和函數。無需在使用這個物件之前對它進行定義。
使用Math的屬性/方法的語法:
var x=Math.PI;
var y=Math.sqrt(16);
Math.PI
Math.SQRT2
Math.SQRT1_2
Math.LN2
Math.LN10
Math.LOG2E
Math.LOG10E