多表单

来源:互联网 发布:天正软件那里有卖 编辑:程序博客网 时间:2024/04/29 17:08


<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script language="javascript" type="text/javascript">
function a()
{
 fr1.action="a.php";
 fr1.submit();
}
 function b()
{
fr1.action="b.php";
fr1.submit();


}
</script>
</head>

<body>
<form  name="fr1" method="post">
 <input type="text" name="name[]" />
 <input type="button" onclick="a()" value="提交a"/>
</form>
<form  name="fr2" method="post">
 <input type="button" onclick="b()" value="提交b" />
</form>
</body>
</html>

原创粉丝点击