js生成某个范围的随机数
Posted loewe0202
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js生成某个范围的随机数相关的知识,希望对你有一定的参考价值。
//生成[min,max)的值 parseInt var RandomNum = parseInt(Math.random() * (21 - 15) + 15); // 生成[min,max]的值 Math.round 四舍五入 var RandomNum = Math.round(Math.random() * (21 - 15) + 15); //生成(min,max]的值 Math.ceil() 向上取整 var RandomNum = Math.ceil(Math.random() * (21 - 15) + 15); //生成[min,max)的值 Math.floor() 向下取整 var RandomNum = Math.floor(Math.random() * (21 - 15) + 15);
以上是关于js生成某个范围的随机数的主要内容,如果未能解决你的问题,请参考以下文章