js 可以使用 Math(算数) 对象来实现随机数的生成。

<script src="https://libs.baidu.com/jquery/1.11.3/jquery.min.js"></script>
<div class="a1">
    点击生成0-1000随机数
</div>
<script type="text/javascript">
 
 Math.ceil(Math.random()*10);     // 获取从 1 到 10 的随机整数,取 0 的概率极小。
 Math.round(Math.random());       // 可均衡获取 0 到 1 的随机整数。
 Math.floor(Math.random()*10);    // 可均衡获取 0 到 9 的随机整数。
 Math.round(Math.random()*10);    // 基本均衡获取 0 到 10 的随机整数,其中获取最小值 0 和最大值 10 的几率少一半。
 
 
 $(document).ready(function(){
    //点击
    $(".a1").click(function(){
      var num=Math.floor(Math.random()*10+5); //10+5为范围5-10之间随即数   
     alert(Math.floor(Math.random()*1000));  
    });
   
 });
</script>
查看效果