JavaScript Math对象

一、JavaScript Math(算数)对象

Math(算数)对象的作用是:执行常见的算数任务。

常用方法有:

  1. round()
  2. random()
  3. max()
  4. min()等

二、round方法实例

代码:

<html>
<body>

<script type="text/javascript">

document.write(Math.round(0.60) + "<br />")
document.write(Math.round(0.50) + "<br />")
document.write(Math.round(0.49) + "<br />")
document.write(Math.round(-4.40) + "<br />")
document.write(Math.round(-4.60))

</script>

</body>
</html>

结果:

1
1
0
-4
-5

三、random方法实例

代码:

<html>
<body>

<script type="text/javascript">

document.write(Math.random())

</script>

</body>
</html>

结果:

0.7183174650818336

注意:数值是随机出现的

四、max方法实例

代码:

<html>
<body>

<script type="text/javascript">

document.write(Math.max(5,7) + "<br />")
document.write(Math.max(-3,5) + "<br />")
document.write(Math.max(-3,-5) + "<br />")
document.write(Math.max(7.25,7.30))

</script>

</body>
</html>

结果:

7
5
-3
7.3

五、min方法实例

代码:

<html>
<body>

<script type="text/javascript">

document.write(Math.min(5,7) + "<br />")
document.write(Math.min(-3,5) + "<br />")
document.write(Math.min(-3,-5) + "<br />")
document.write(Math.min(7.25,7.30))

</script>

</body>
</html>

结果:

5
-3
-5
7.25

 

热门文章

优秀文章