<html>
<head>
<title>动态增加文本框</title>
<script language="javascript" >
var count=0;
function addText()
{
count+=1;
var newText=document.createElement("input");
var br=document.createElement("br");
newText.setAttribute("type","text");
newText.setAttribute("name","txt"+count);
newText.setAttribute("value","第"+count+"个文本框");
document.body.appendChild(newText);
document.body.appendChild(br);
}
</script>
</head>
<body>
<input type="button" name="addText" onClick="addText();" value="增加一个文本框"><br>
</body>
</html>
javascript的动态增加文本框,其实除了用HTML代码外,还可以使用DOM方法来增加文本框。