📄 list.jsp
字号:
<%@ page language="java" pageEncoding="utf-8"%>
<%@ include file="/WEB-INF/jsp/struts/jsp/include/taglib.jsp"%>
<html>
<head>
<title>Add</title>
</head>
<body>
<html:form action="/daily">
<h1><bean:message key="daily.ist" /></h1>
<hr />
<bean:message key="daily.daily_date.from" />
<html:text property="daily_date_from" />
<bean:message key="daily.daily_date.to" />
<html:text property="daily_date_to" />
<html:submit><bean:message key="common.srh" /></html:submit>
<br>
<logic:notEmpty name="dailies">
<table border="1">
<tr>
<th><bean:message key="common.id" /></th>
<th><bean:message key="daily.daily_date" /></th>
<th><bean:message key="daily.daily_weather" /></th>
<th><bean:message key="daily.daily_pos" /></th>
<th><bean:message key="daily.daily_content" /></th>
<th><bean:message key="common.oper" /><br></th>
<th><br></th>
</tr>
<logic:iterate name="dailies" id="info">
<tr>
<td><bean:write name="info" property="id" /><br></td>
<td><bean:write name="info" property="daily_date" format="yyyy/MM/dd" /><br></td>
<td><bean:write name="info" property="daily_weather" /><br></td>
<td><bean:write name="info" property="daily_pos" /><br></td>
<td><bean:write name="info" property="daily_content" /><br></td>
<td>
<html:link href="/bily-notebook/daily.do?method=toUpd&"
paramId="id" paramProperty="id" paramName="info">
<bean:message key="common.upd"/>
</html:link>
<html:link href="/bily-notebook/daily.do?method=toDel&"
paramId="id" paramProperty="id" paramName="info">
<bean:message key="common.del"/>
</html:link>
</td>
<td>
<html:multibox property="sel">
<bean:write name="info" property="id"/>
</html:multibox>
</td>
</tr>
</logic:iterate>
</table>
</logic:notEmpty>
<html:submit onclick=
"document.forms[0].action = document.forms[0].action+'?method=toAdd'">
<bean:message key="common.add" />
</html:submit>
<html:submit onclick=
"document.forms[0].action = document.forms[0].action+'?method=toUpdSel'">
<bean:message key="common.upd" />
</html:submit>
</html:form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -