Math.random()Math.floor()随机取两个数之间的整数 Math.random()生成随机数,范围是0到1(不包括1) Math.floor()向下取整数,获得他最近的整数 随机取两个数之间的整数Math.floor(Math.random() * (max - min + 1)) + min