javascirpt获取随机数
Posted weihexin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascirpt获取随机数相关的知识,希望对你有一定的参考价值。
/* getran(min, max, n): 获取min与max之间的随机数 n: n保留浮点数数量 */ function getran(min, max, n){ return Number((Math.random() * (max - min) + min).toFixed(n || 0));//包含max } //调用: document.write(getran(0, 1, 0));//0 document.write(getran(0, 1, 1));//0.5
以上是关于javascirpt获取随机数的主要内容,如果未能解决你的问题,请参考以下文章