标签:style class java javascript cti for
document.write(parseInt(10*Math.random())); //输出0~10之间的随机整数
document.write(Math.floor(Math.random()*10+1)); //输出1~10之间的随机整数
//输出指定位数的随机数的随机整数
function RndNum(n){
var rnd="";
for(var i=0;i<n;i++)
rnd+=Math.floor(Math.random()*10);
return rnd;
}
document.write(RndNum(4));
标签:style class java javascript cti for
原文地址:http://www.cnblogs.com/xinboqinheng/p/3809407.html