//Array random sort FunctionPubUse.shuffle = function(o){ //v1.0 for(var j, x, i = o.length; i; j = parseInt(Math.random() * i), x = o[--i], o[i] = o[j], o[j] = x); return o;};
9个数字随机排序以后,以后顺序扔进9个格子里面就Ok了。上面是对数组元素随机排序的函数。