赞
踩
闲话不多说,直接用代码解释:
- <span style="font-size:18px;"><!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title></title>
- <script>
- //js实现随机生成整数
- var a = Math.random(); //生成0——1的随机数
- a = a*10; //0——10的随机数
- a = Math.ceil(a); //上取整,完成随机生成1——10的整数
- document.write(a);
- </script>
- </head>
- <body>
- </body>
- </html>
- </span>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。