1.在div后面添加一个通过input和button登录按钮:
Input创建:
姓名:
账号:
密码:
按钮4
function fun4(){
var div=document.getElementById("div1");
var a=document.createElement("input");
var at=a.setAttribute("type","button");
var wb=a.setAttribute("value","登录");
div.appendChild(a);
}
Button创建:
姓名:
账号:
密码:
按钮5
function fun5(){
var div=document.getElementById("div1");
var bu=document.createElement("button");
var wb=document.createTextNode("登录2");
bu.appendChild(wb);
div.appendChild(bu);
}