Math. random()返回的是0-1之间的随机数(不包括1)如果你想要0-10(不包括10)之间的数,乘以10即可。如果你想要0-9(包括9)之间的整数,可以用Math. floor(Math. random()*10)希望能帮到你!