Examination_system/Examination_system-1/.svn/pristine/b5/b5ebdee84d4a55a9631c2867de3...

70 lines
1.6 KiB
Plaintext
Raw Normal View History

2023-10-30 13:10:40 +08:00
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<%@ taglib prefix="fns" uri="/WEB-INF/tlds/fns.tld" %>
<!DOCTYPE html>
<html>
<head>
<%@include file="../baseset.jsp" %>
<%@include file="../systemset.jsp" %>
<link rel="stylesheet" href="${bonuspath}/static/plugins/zTree/3.5/zTreeStyle.css" />
<script src="${bonuspath}/static/plugins/zTree/3.5/jquery.ztree.core-3.5.min.js"></script>
<title></title>
<style type="text/css">
.p{
margin:1% 2% 0 1%;
}
.flag{
width:15%;
text-align: right;
}
.flag>span{
padding-right:1em;
}
.con{
width:35%;
text-align: left;
}
.lang{
valign:middle;
width:80%;
text-align: left;
}
.inp{
width:80%;
}
.linp{
width:91.5%;
}
</style>
</head>
<body>
<div class="p">
<form id="gradeForm1" method="POST" onsubmit="return false;" >
<table id="baseTable" cellspacing="0" cellpadding="0" border="0" style="margin: 2em 1em;" class="customTable">
<tbody>
<tr class="FormData">
<td class="flag">管辖的座位号:</span></td>
<td class="con">
<input type="text" id='site'/>
</td>
<span><font color="red">*注意多个座位号直接用英文逗号分开最后一位不需要再写逗号例如1,2,3,4,5</font>
</tr>
</tbody>
</table>
</form>
</div>
<script type="text/javascript">
function formValid(){
return JY.Validate.form("gradeForm1");
}
function addRegistration() {
var site=$("#site").val();
return site;
}
</script>