js生成指定位数的随机字符串或指定范围的随机数
效果测试:http://code.bbnsc.com/?dataid=80第一种:使用randomString,e表示长度,默认32位function randomString(e) { e = e || 32; var t = "ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz2345678", a = t.length, n = ""; for (i = 0; i < e; i++) n += t.charAt(Math.floor(Math.random() * a)); return n}al...