a0c162630d8d001c1a468c340d92ed30

来自「一个超市管理系统,提供一些基本简单的操作,JSP+APACHE+ORCALE实现」· 代码 · 共 37 行

TXT
37
字号
<script language="JavaScript">
<!--
function Add()
{ 
   
  pro_array.products[i]=document.form2.pro_id.value;
  i++;
}
// -->
</script> 
<%@ page language="java" contentType="text/html; charset=gb2312"
    pageEncoding="gb2312"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>退货管理</title>
</head>
<body>
<jsp:useBean id="pro_array" scope="session" class="bb.pro_array" />
<h1 align="center">退货管理</h1>
<hr>

<%int i=0; %>
<table align="center"width="500"border="1">
<tr><form name="form"method="post"action="test.jsp">
  <P>
     商品编号:
     <input type="text"name="pro_id">
  </P>
  <input type="submit"name="submit" value="提交">   
</form>
<a href="test1.jsp?products=<%=pro_array.products%>">确定</a>
</tr>
</table>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?