guesshistorytable.jsp

来自「spring的WEB开发插件,支持多状态WEB开发」· JSP 代码 · 共 15 行

JSP
15
字号
			<c:if test="${!empty data.guessHistory}">
				<h4>Guess history:</h4>
				<table border="1">
				    <th>Guess</th>
				    <th>Right Position</th>
				    <th>Present But Wrong Position</th>
				    <c:forEach var="guessData" items="${data.guessHistory}">
				    	<tr>
				    		<td>${guessData.guess}</td>
				    		<td>${guessData.rightPosition}</td>
				    		<td>${guessData.correctButWrongPosition}</td>
				    	</tr>
				    </c:forEach>
				</table>
			</c:if>

⌨️ 快捷键说明

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