<%@ page contentType="text/html;charset=GBK" language="java"%>
<html>
<head>
<script type="text/javascript">
function submit(){
document.a.submit;
document.b.submit;
}
</script>
</head>
<body>
<form name="a" action="#" method="post">
<input type="text" name="aa" >
<input type="button" name="sub" value="提交" onclick="submit();">
 
</form>
<form name="b" action="#" method="post">
<input type="text" name="bb" id="bb">
</form>
</body>
<%  String aa=request.getParameter("aa");
    String bb=request.getParameter("bb");
    out.println("aa="+aa+"         "+"bb="+bb);
%>
</html>

相关文章:

  • 2022-12-23
  • 2021-12-31
  • 2022-12-23
  • 2022-12-23
  • 2021-10-10
  • 2022-12-23
  • 2022-12-23
  • 2021-07-29
猜你喜欢
  • 2022-12-23
  • 2021-08-08
  • 2021-08-09
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案