我对 Javascript 相当陌生,并且无法制作生成随机密码的函数。当我单击一个按钮时,该函数被调用。空函数和 MD5 函数包含在不同的文件中。
function genPass(id) {
if(!empty(id)) {
var n = Math.ceil(Math.random()*(5*Math.random()));
n = n.substring(0,7);
//document.getElementById(id).value = n;
document.write(n);
}
}