码迷,mamicode.com
首页 > 编程语言 > 详细

javascript 实现六位数的随机数

时间:2015-10-23 15:55:34      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>随机数</title>
</head>
<body>
<script type="text/javascript">
    window.onload=function(){
        MathRand();

        var ss=document.getElementById(ss);

        ss.onclick=function(){

            MathRand();

        }
    }
    function MathRand()
    {
        var Num="";

        for(var i=0;i<6;i++)
        {
            Num+=Math.floor(Math.random()*10);
        }

        document.getElementById("Lb_Random").innerText=Num;

    }
</script>
<div id="Lb_Random" style="width: 200px; height: 20px; background: red"></div>
<button id="ss">更新</button>
</body>
</html>

 

javascript 实现六位数的随机数

标签:

原文地址:http://www.cnblogs.com/oksite/p/4904552.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!