showfourdigitanswer.jsp
来自「spring的WEB开发插件,支持多状态WEB开发」· JSP 代码 · 共 28 行
JSP
28 行
<%@ include file="includeTop.jsp" %>
<div id="content">
<div id="insert"><img src="images/webflow-logo.jpg"/></div>
<h2>Show answer</h2>
<table>
<tr>
<td>Total number of guesses:</td>
<td>${data.guesses}</td>
</tr>
<tr>
<td>Elapsed time in seconds:</td>
<td>${data.durationSeconds}</td>
</tr>
<tr>
<td>Answer:</td>
<td>${data.answer}</td>
</tr>
<tr>
<td colspan="2" class="buttonBar">
<form action="play.htm">
<input type="hidden" name="_flowId" value="fourDigitNumberGuess">
<input type="submit" value="Play Again!">
</form>
</td>
</tr>
</table>
<%@ include file="includeBottom.jsp" %>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?