生成 0-1 之间的随机数
Math.random()
生成 0-x 之间的随机整数:
Math.round(Math.random()*x)
生成 min-max 之间的随机整数:
Math.round(Math.random()*(max-min)+min)
生成N位随机数
/**
* 函数--生成N位随机数
* @param {*} N 数字的长度
*/
function randomNum(N)服务器托管网 {
return String(pars服务器托管网eInt(Math.random() * Math.pow(10, N)) + Math.pow(10, N)).substring(
1,
N + 1
);
}
生成随机id
(Math.random() + new Date().getTime()).toString(32).slice(0,8)
得到8位不重复的随机id ‘1h1obpbd’
生成随机颜色
//随机RGB颜色-方法1
function getColor () {
var i, rgb = [];
for (i = 0; i
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
机房租用,北京机房租用,IDC机房托管, http://www.fwqtg.net