文件名称:验证码函数
文件大小:779B
文件格式:TXT
更新时间:2016-06-17 04:22:07
大小写混合
function randomTest() { var a = new Array( "A", "B", "C", "D", "E", "F", "G", "H", "I", "Z", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"); // var b = "", c; for(i = 1; i <= 4; i ++ ) { c = Math.floor(Math.random() * a.length); b = b + a[c]; a = a.del(c); } //document.write(b);