我是Javascript的新手,我无法创建一个生成随机密码的函数。单击按钮时会调用该函数。空和MD5函数包含在differant文件中。
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);
}
}
答案 0 :(得分:0)
random()函数返回整数类型,也许你想先创建字符串?
你可以这样试试:
...
var n = Math.ceil(Math.random()*(5*Math.random())).toString();
...
答案 1 :(得分:0)
n
不是字符串,因此您不能在其上使用substring方法。要变成一个字符串,请使用几乎所有对象都具有的.toString()
方法:
var n = Math.ceil( ... ).toString();
由此得出n
将具有子串方法。