如:
1<form action="a1.jsp" method="post" name="f1">
2<form action="a1.jsp" method="post" name="f2">
3<input name="ss" type="text"/>
4<input type="submit"/>
5<input type="submit"/>
6</form>
7</form>
应该怎样写呢???
---------------------------------------------------------------
1<input name="B1" onclick="this.form.action='a1.jsp';this.form.submit()" type="button" value="提交1"/>
1<input name="B2" onclick="this.form.action='a1.jsp';this.form.submit()" type="button" value="提交2"/>