alert出数组中的随即值 /*** 随即的到min(包含)和max(不包含)之间的值*/function random1(min, max){ return Math.floor(min + ((Math.random() * 10) % (max - min)));}
?