📄 engageexam_reader.jsp
字号:
<%@ page language="java" pageEncoding="GBK"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<base href="http://localhost:8080/accp_hr/"/>
<title>添加试卷</title>
</head>
<body bgcolor="#DADEDD" style="background-image: url('images/accphr/main.jpg');background-attachment :fixed ;">
<html:form action="engageExam" onsubmit="return tijiao();">
<input type="hidden" name="opee" value="toExamReader"/>
<table align="center" width="100%">
<tr>
<td align="right">
<html:submit value="确定" />
</td>
</tr>
<tr>
<td>
<table border="1" cellspacing="0" align="center" width="90%" bordercolor="black" style="font-size: 12px">
<tr>
<th>姓名</th>
<td>
${answers.humanName }
</td>
<th>身份证号</th>
<td>${answers.humanIdcard }</td>
</tr>
<tr>
<th>试卷编号</th>
<td>
${answers.examNumber }
</td>
<th>总分</th>
<td>
${answers.totalPoint }
</td>
</tr>
<logic:iterate id="item" name="answerlist" indexId="i">
<logic:iterate id="qitem" name="qlist" indexId="j">
<c:if test="${j==i}">
<tr>
<td colspan="4">
<font color="blue">${qitem.content }</font>
A:${qitem.keyA }B:${qitem.keyB }C:${qitem.keyC }D:${qitem.keyD }E:${qitem.keyE }
正确答案:${qitem.correctKey }
<font color="red">用户答案:${item.answer==""?"无":item.answer }</font>
</td>
</tr>
</c:if>
</logic:iterate>
</logic:iterate>
</table>
</td>
</tr>
</table>
</html:form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -