| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <%@ page contentType="text/html;charset=GBK"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
- <form name="educationForm" action="" method='post'>
- <div class="forum-container temp-form" >
- <input type="hidden" id="educationId" name="educationId"
- value="">
- <table style="width:100%">
- <tr>
- <td>学习类型:</td>
- <td><input type="text" name="study_type" id="study_type"
- class="default-text" /></td>
- <td>学校名称<font color="red">*</font>:
- </td>
- <td><input type="text" name="study_school_name"
- id="study_school_name" class="default-text" /></td>
- <td>专业:</td>
- <td><input type="text" name="study_subject"
- id="study_subject" class="default-text" /></td>
- </tr>
- <tr>
- <td>学历:</td>
- <td>
-
- <select name="study_educational_background" id="study_educational_background">
- <c:forEach var="list" items="${listEducationalData}">
- <option value="${list.data_id }">${list.value_name }</option>
- </c:forEach>
- </select>
-
- </td>
- <td>学位:</td>
- <td><input type="text" name="study_degree" id="study_degree"
- class="default-text" /></td>
- <td>起止时间:</td>
- <td><input type="text" name="study_start_end_time"
- id="study_start_end_time" class="default-text" /></td>
- </tr>
- <tr>
- <td>上传附件:</td>
- <td colspan="5"><jsp:include page="/include/file.jsp">
- <jsp:param name="fieldName" value="study_affix" />
- <jsp:param name="folder" value="yongfu/staff" />
- <jsp:param name="documentId" value="" />
- <jsp:param name="size" value="10" />
- <jsp:param name="isView" value="1" />
- <jsp:param name="isDelFile" value="1" />
- <jsp:param name="definedCss" value="file-style" />
- </jsp:include>
- </td>
- </tr>
- </table>
-
- <div style="margin: 5px auto; text-align: left">
- <input type="button" value="清空" id="resetBtn"
- class="l-button" style="width: 100px;" onclick="resetForm()" />
-
- <input type="button" value="保存" id="saveBtn"
- class="l-button" style="width: 100px;" onclick="submitSaveEducation();" />
- </div>
- </div>
- <div position="center" title="" id="main2">
- <div id="maingrid2" style="margin: 0; padding: 0"></div>
- </div>
- </form>
|