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

📄 worker_main.jsp

📁 The Software cannot constitute the primary value of any new software derived from or incorporating
💻 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 + -