代码语言:javascript复制
</head>
<body>
<h2>JavaScript Math.random()</h2>
<p>点击按钮, getRndInteger(min, max) 会返回 0(包含)到 3(包含)到数字:</p>
<button onclick="document.getElementById('demo').innerHTML = getRndInteger(0,3)">点我</button>
<p id="demo"></p>
<script>
function getRndInteger(min, max) {
return Math.floor(Math.random() * (max - min 1)) min;
}
</script>
</body>
</html>
Math.floor 向下取整 Math.random 产生随机数
- 小结: 如果是[min,max) ,那 1就去掉 ,为:
Math.floor(Math.random() * (max - min)) min;
如果是(min,max],那原文 1依然去掉,在末尾 1,为:
代码语言:javascript复制Math.floor(Math.random() * (max - min)) min 1;
如果是想带有小数的随机数,这里提供思路,产生两位数,然后将个位数转化为小数,十位数就是个位数,以此类推,这样就是有小数的啦。