如何通过JavaScript动态生成html控件
比如我要添加学生,页面默认只添加一个,但是有个继续添加按钮,点击就会在页面增加一个添加学生的控件,那位高手能帮个忙看看如何实现!如下图:不单是生成控件,前面还要有文字!,...
比如我要添加学生,页面默认只添加一个,但是有个继续添加按钮,点击就会在页面增加一个添加学生的控件,那位高手能帮个忙看看如何实现!
如下图:不单是生成控件,前面还要有文字!,如果可以的话也希望给个删除控件的方法 展开
如下图:不单是生成控件,前面还要有文字!,如果可以的话也希望给个删除控件的方法 展开
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script>
var i=1;
function add(){
var top=document.getElementById("top");
var input=document.createElement("input");
var div=document.createElement("div");
div.innerHTML="学生:"+i
div.id=i
i=i+1;
input.type="text"
input.name="v";
input.onclick=function remo(){alert(i);top.removeChild(div)};//点击删除控件
input.value="nihao";
input.id="v";
div.appendChild(input);
top.appendChild(div);
}
</script>
</head>
<body>
<div><input type="button" onclick="add()" value="添加" /></div>
<div id="top"></div>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script>
var i=1;
function add(){
var top=document.getElementById("top");
var input=document.createElement("input");
var div=document.createElement("div");
div.innerHTML="学生:"+i
div.id=i
i=i+1;
input.type="text"
input.name="v";
input.onclick=function remo(){alert(i);top.removeChild(div)};//点击删除控件
input.value="nihao";
input.id="v";
div.appendChild(input);
top.appendChild(div);
}
</script>
</head>
<body>
<div><input type="button" onclick="add()" value="添加" /></div>
<div id="top"></div>
</body>
</html>
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可以这么写:
var input = document.createElement("input");
document.body.appendChild(input);
也可以这么写,例如你想要添加的控件在id为"divId"这个div上显示
document.getElementById("divId").innerHTML = '<input type="text"/><input type="text"/>';
var input = document.createElement("input");
document.body.appendChild(input);
也可以这么写,例如你想要添加的控件在id为"divId"这个div上显示
document.getElementById("divId").innerHTML = '<input type="text"/><input type="text"/>';
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
function createInput(){
var input = document.createElement("input");
document.body.appendChild(input);
}
var input = document.createElement("input");
document.body.appendChild(input);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询