首页 > 开发 > PHP > 正文

在表单中动态增加文本框

2024-05-04 22:55:47
字体:
来源:转载
供稿:网友
<script language="javascript">
var row = 0;

function insertelement() {
  var nod=document.createelement("span");
  document.form1.insertbefore(nod);
  nod.innerhtml="<br>row"+row+"<input type=text name=txt["+row+"][]><input type=text name=txt["+row+"][]>"
  row = row+1
}
</script>

<body>

动态增加文本框

<form name=form1 action=<? echo $php_self; ?> method=post>
<input type=submit value="提交"><input type=button value=增加 onclick="insertelement()"><br>
</form>
<pre>
<?
print_r($http_post_vars);
?>
</pre>

</body>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表