赞
踩
随机生成一个0-5的随机数字
<script>
let a = Math.random();
//随机生成的数字 0-1之间
//乘以6之后 0-7之间
let b = a * 6
// 向下取整
let c = Math.floor(b)//向下取整
</script>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。