//Math.random()获取随机数0-1的随机数
re=Math.random() '<br /> ';//0-1随机数
document.write('0-1随机数' re);
//取随机数 0-5之间
re1=Math.random()*5;//0-1随机数
document.write('0-5之间随机小数' re1 '<br /> ');
//取随机数 15-30(x-y)之间 Math.random()*(y-x) x
re2=Math.random()*(30-15) 15;
document.write('15-30之间随机小数' re2 '<br /> ');
//取随机整数 x-y之间随机整数 Math.floor(Math.random()*(y-x 1) x)
re3=Math.floor(Math.random()*(50-20 1) 20)
document.write('20-50之间随机整数' re3 '<br /> ');