tutuzuiai 2006-3-17 17:08
在html里我怎摸样才能把表单的内容向二个页面里提交呢?
如:
<form action=a1.jsp method=post name=f1>
<form action=a1.jsp method=post name=f2>
<input type=text name=ss>
<input type=submit>
<input type=submit>
</form>
</form>
应该怎样写呢???
dadijin 2006-3-17 17:09
<input type="button" value="提交1" name="B1" onclick="this.form.action='a1.jsp';this.form.submit()"><input type="button" value="提交2" name="B2" onclick="this.form.action='a1.jsp';this.form.submit()">