我正在尝试构建一个复杂的自动表单填充程序。我在下面编写了代码,但是当我尝试在FireBug中运行它时,它一直在说语法错误。
在这段代码中,我试图在我填充的页面中创建一个弹出窗体,创建用户名作为需求(函数a()
)。在函数Nickname()
中,我获取了我在函数a()
中创建的用户,将其保存在数组中,随机选择一个用户名,在适当的位置填写,并检查它是否正常。函数传递和检查填写表单的其余部分。
var f = document.createElement("form");
var i = document.createElement("input");
i.type = "text";
i.name = "username";
i.id = "username";
var ien = document.createElement("input");
ien.type = "number";
ien.name = "quantitye";
ien.id = "quantity";
var b = document.createElement("button");
b.onclick = "a()";
var bu = document.createElement("button");
bu.onclick = "bu()";
f.appendChild(i);
f.appendChild(ien);
f.appendChild(b);
f.appendChild(bu);
document.getElementsByTagName('body')[0].appendChild(f);
function a() {
var text = document.getElementById("username").value ;
var i;
var j ;
j = document.getElementById("quantity").value;
var text1 = "";
for(i = 1; i < j ; i++) {
text1+= text + i + " " ;
}
document.write(text1);
}
function Nickname() {
var array =[];
var Guser;
Guser = a();
array = Guser.split(',');
var length = array.length;
var randome = array[math.floor(math.random() * array.length)];
var index = array.indexOf(randome);
document.getElementById("nick").value = randome;
var r = confirm("Is It Okay To Continue ?");
if ( r == true ) {
if(index>-1 && length > -1) {
array.splice(index,1);
}
else if( r != true ) {
randome = array[math.floor(math.random() * array.length)];
document.getElementById("nick").value = randome;
var s = confirm("Is It Okay To Continue ?");
while ( s != true ) {
randome = array[math.floor(math.random() * array.length)];
document.getElementById("nick").value = randome;
}
}
}
}
function pass() {
var password = "123456789m";
document.getElementById("password").value = password;
document.getElementById("pass_conf").value = password;
}
function checked() {
var checked = true ;
document.getElementById(agd).checked = true ;
}
答案 0 :(得分:0)
此声明看起来不正确:
function all() {
function Nickname() {
您真的打算在Nickname()
内声明all()
吗?