标签:alert class ext 方法 2.4 随机 rand 随机数 code
<html> <head> <script type="text/javascript"> var num = 12.4; alert(Math.round(num));//12 alert(Math.ceil(num));//13 alert(Math.floor(num));//12 alert(Math.random()*10);//产生随机数 alert(parseInt(Math.random()*10));//产生0到9以内的整数 </script> </head> <body> this is my file </body> </html>
标签:alert class ext 方法 2.4 随机 rand 随机数 code
原文地址:http://www.cnblogs.com/cynchanpin/p/6820456.html