?? worker_main.jsp
字號:
<table class="selection_table" width=100%>
<jsp:setProperty name="taskBean" property="userId"
value="${sessionScope['userId']}" />
<tr>
<th>Description</th>
<th>Status</th>
</tr>
<c:forEach var="task" items="${taskBean.userTasks}">
<c:choose>
<c:when test="${i % 2 == 0}">
<c:set var="row" value="even_row" />
</c:when>
<c:otherwise>
<c:set var="row" value="odd_row" />
</c:otherwise>
</c:choose>
<tr class="${row}">
<td><c:out value="${task.description}" /></td>
<td><c:out value="${task.status}" /></td>
</tr>
<c:set var="i" value="${i+1}" />
</c:forEach>
</table>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -