<script>
function Getrandom(min,max){
//返回几个整数,最小值为min
return Math.floor(Math.random()*(max-min+1)+min);
}
var i=10;
while(i--){
console.log(Getrandom(1,10));
}
var arr=['张三','李四','王五','王六','赵四'];
console.log(arr[Getrandom(0,arr.length-1)]);
</script>
JS中Math.random返回随机整数的方法
最新推荐文章于 2024-10-08 13:32:27 发布