⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 datatable.jsp

📁 医院信息系统(Hospital Information System
💻 JSP
字号:
<%@taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
<%@taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
<%@taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%>
<%@page contentType="text/html; charset=GB2312"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
  <head>
  <title>guess</title>
  <meta http-equiv="Content-Type" content="text/html; charset=gb2312"/>
  <script type="text/javascript" src="/css/table.js" charset="gb2312">;</script>
  <script type="text/javascript" src="/js/datatable.js" charset="gb2312">;</script>
  <link type="text/css" rel="stylesheet" href="/css/table.css"/>
  </head>
  <body onload="tableCssInit();init()">
  <table id="table1" cellpadding="3">
    <tr class="caption">
      <td width="15px">&nbsp;</td>
      <logic:iterate id="columnName" name="listColumnName">
        <td onmouseover="changeTitleColor(this)" onmouseout="changeTitleColorBack(this)" onclick="columnSort(this)" ondblclick="columnSort(this)">
			<span><bean:write name="columnName" filter="false"/></span>
			<span style="display:none">↑</span>
			<span style="display:none">↓</span>
		</td>
      </logic:iterate>
    </tr>
    <logic:iterate id="first" name="listTableContent">
      <tr onmouseover="changerColor(this)" onmouseout="changeColorBack(this)" onclick="chooseItem(this);fillKeyValue(this)" ondblclick="showItemDeteils(this)">
        <td><input type="radio" class="singleChoice" name="radio1" id="radio1" value="radio"/></td>
        <logic:iterate id="second" name="first">
          <td><bean:write name="second" filter="false"/></td>
        </logic:iterate>
      </tr>
    </logic:iterate>
  </table>
  <div>
    <a href="#">上一页</a>
    &nbsp;&nbsp;
    <a href="#">下一页</a>
    &nbsp;&nbsp;
    <a href="#">首 页</a>
    &nbsp;&nbsp;
    <a href="#">末 页</a>
    &nbsp;&nbsp;&nbsp;&nbsp;
    <input type="text" size="4" value="" maxlength="4" style="width:30px; margin:0px; padding:0px; font-size:12px"/>
    <input type="button" style="font-size:12px; margin:0px; padding:0px" value="确定"/>
  </div>
  <form id="deleteActionForm" name="deleteActionForm" action="deleteAction.do" method="post">
  <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="keyNames" name="keyNames" value="<bean:write name="keyNames" filter="false"/>"/>
  <input type="hidden" id="keyValues" name="keyValues" value=""/>
  <input type="hidden" id="menuID" name="menuID" value="<bean:write name="menuID" filter="false"/>"/>
  <input type="hidden" id="searchSQL" name="searchSQL" value="<bean:write name="searchSQL" filter="false"/>" />
  <input type="hidden" id="searchText" name="searchText" value="<bean:write name="searchText" filter="false"/>" />
  <input type="hidden" id="orderColumn" name="orderColumn" value="<bean:write name="orderColumn" filter="false"/>" />
  <input type="hidden" id="orderKind" name="orderKind" value="<bean:write name="orderKind" filter="false"/>" />
  <input type="hidden" id="multiSort" name="multiSort" value="<bean:write name="multiSort" filter="false"/>" />
  <input type="hidden" id="modified" name="modified" value="<bean:write name="modified" filter="false"/>" />
  <input type="hidden" id="pageShowType" name="pageShowType" value="<bean:write name="pageShowType" filter="false"/>" />
  </form>
  </body>
</html>

⌨️ 快捷键说明

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