['abcdefghijklmnopqrstuvwxyz','ABCDEFGHIJKLMNOPQRSTUVWXYZ','1234567890','~!@#$%^&*()_+";",./?<>'];
var rand = function(min, max){
return Math.floor(Math.max(min, Math.random() * (max+1)));
}
var len = rand(8, 16); // 長度為8-16
var pw = '';
for(i=0; i<len; ++i) {
var strpos = rand(0, 3);
pw += text[strpos].charAt(rand(0, text[strpos].length));
} return pw;
}
測試代碼: [Ctrl+A 全選 注:如需引入外部Js需重新整理才能執行]