customform.jsp

来自「医院信息系统(Hospital Information System」· JSP 代码 · 共 43 行

JSP
43
字号
<%@page language="java" contentType="text/html; charset=GB2312" pageEncoding="GB2312"%>
<%@taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
<%@taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
<%@taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>customform</title>
<meta http-equiv="Content-Type" content="text/html; charset=GB2312" />
<script type="text/javascript" src="/js/customform.js" charset="gb2312">;</script>
<link type="text/css" rel="stylesheet" href="/css/customform.css"/>
</head>
<body onload="init()">
<form id="form1" method="post" action="saveAction.do">
<table id="table1">
  <logic:iterate id="first" name="listInputItem">
    <tr class="trcolor">
      <logic:iterate id="second" name="first">
        <td><bean:write name="second" filter="false"/></td>
      </logic:iterate>
    </tr>
  </logic:iterate>
</table>
<!-- "-1"和"-2"是上面按钮栏和下面按钮栏两个页面,"-3"才是mainframe-->
&nbsp;&nbsp;<a href="javascript:history.go(-3)" id="returnPage" style="display:none">返  回</a>
<input type="hidden" id="baseTableName" name="baseTableName" value="<bean:write name="baseTableName" filter="false"/>"/>
<input type="hidden" id="superTableName" name="superTableName" value="<bean:write name="superTableName" filter="false"/>"/>
<input type="hidden" id="menuID" name="menuID" value="<bean:write name="menuID" filter="false"/>"/>
<input type="hidden" id="keyNames" name="keyNames" value="<bean:write name="keyNames" filter="false"/>"/>
<input type="hidden" id="keyValues" name="keyValues" value=""/>
<input type="hidden" id="saveStatus" name="saveStatus" value="<bean:write name="newSaveStatus" filter="false"/>"/>
<input type="hidden" id="pageShowType" name="pageShowType" value="<bean:write name="pageShowType" filter="false"/>"/>
</form>
<div style="margin-left:5px">
	<h5 style="margin-bottom:5px;">图例说明:</h5>
	<img src="images/star.gif" /><img src="images/star.gif" /> <span style="margin-right:20px">表示是关键字,并且是必填项</span>
	<img src="images/star.gif" /> <span style="margin-right:20px">表示是必填项</span>
	<img src="images/coding.gif" style="margin-bottom:-2px" /> <span style="margin-right:20px">表示编码按钮,说明该项可以通过选择填值</span>
</div>
<input type="hidden" id="saveForm" name="saveForm" onclick="checkBeforeSave()" value="" />
</body>
</html>

⌨️ 快捷键说明

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