JS 输出指定范围内的随机数
Posted 壁虎漫步.
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS 输出指定范围内的随机数相关的知识,希望对你有一定的参考价值。
/* 自定义函数 */ function GetRandomNum(Min,Max){ var Range = Max - Min; var Rand = Math.random(); return(Min + Math.round(Rand * Range)); } /* 调用函数 */ var num = GetRandomNum(4,10);
以上是关于JS 输出指定范围内的随机数的主要内容,如果未能解决你的问题,请参考以下文章