为什么不能用getInt()?

来源:7-16 随机数 random()

幕布斯6059189

2018-11-08 11:13

为什么不能用getInt()?

写回答 关注

3回答

  • 指尖逝去的流沙
    2018-12-24 12:25:54

    写的好复杂,

  • 先思后做万无一失
    2018-12-06 23:08:50

    <!DOCTYPE html>

    <html>

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

    <title>Math </title>

    <script type="text/javascript">

           var a=0,b;

           while(a<=10)

           {

           b = Math.round(Math.random()*a);

           a++;

           document.write(b+"<br>");

           }

    </script>

    </head>

    <body>

    </body>

    </html>


  • 幕布斯6059189
    2018-11-08 16:42:26

    是parseInt() 可以用,我的

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468060 学习 · 21891 问题

查看课程

相似问题