?? datatable.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"> </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>
<a href="#">下一頁</a>
<a href="#">首 頁</a>
<a href="#">末 頁</a>
<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 + -