JavaScript

超轻量级php框架startmvc

JS随机数产生代码分享

更新时间:2020-06-28 21:12:01 作者:startmvc
我们先来看下本次源码的效果图大家可以灵活运用,我们把具体JS代码分享给大家:<!docty

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

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


<!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> 

如果大家还有更简单的方法,可以在下方的留言区讨论。

JS 随机数