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

📄 administrator_main.jsp

📁 The Software cannot constitute the primary value of any new software derived from or incorporating
💻 JSP
字号:
<table class="selection_table">

<tr>
	<th>Username</th>
	<th>Group</th>
	<th>Mobile</th>
</tr>

<c:forEach var="user" items="${userBean.allUsers}">
	<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 onClick="edit('${user.username}', ${user.groupId},
	                 '${user.mobile}', ${user.userId}, this)"
	    class="${row}">
		<td><c:out value="${user.username}" /></td>
		<td><c:out value="${user.groupname}" /></td>
		<td><c:out value="${user.mobile}" /></td>
	</tr>

	<c:set var="i" value="${i+1}" />
</c:forEach>

</table>

⌨️ 快捷键说明

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