function random(min,max){ return Math.floor(min+Math.random()*(max-min)); }
例如,生成0-9的随机数(包括0,不包括9) random(0,9)。