全国统一服务热线:400-633-9193

JS随机数产生代码分享

    网络     2018-03-15    1124

我们先来看下本次源码的效果图

大家可以灵活运用,我们把具体JS代码分享给大家:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Document</title>
<style>
  #count{
    font-size: 20px;
    color: green;
    width: 400px;
    height: 30px;
    border: 1px solid black;
    margin: auto;
    line-height: 30px;
    text-align: center;
  }
  </style>
</head>
<body>
  <div id="count"></div>
  <script>
  //产生随机数
function count (){
  var i=Math.random()*(999999-100000)+100000;
  var j=parseInt(i,10);
  j="100000-999999随机产生:"+j;
  document.getElementById("count").innerHTML= j;
}
setInterval("count()",100);
  </script>
</body>
</html>


  分享到:  
0.3042s