js生成随机整数 //js生成随机整数function myRandom(max){ var Rand = Math.random(); var tp=Math.floor(Rand * max); return tp}
//js生成随机整数
function myRandom(max)
{
var Rand = Math.random();
var tp=Math.floor(Rand * max);
return tp
}
//js生成随机整数
function myRandom(max)
{
var Rand = Math.random();
var tp=Math.floor(Rand * max);
return tp
}