| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <%@ page contentType="text/html;charset=GBK"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
- <form name="experienceForm" action="" method='post'>
- <!-- 根据表单不同设置不同的值 -->
- <input type="hidden" id="workExp.iemploy_staff_id" name="workExp.iemploy_staff_id" value="${employStaff.universalid }"/>
- <input type="hidden" id="workExp.universalid" name="workExp.universalid" value=""/>
- <input type="hidden" id="workExp.unit_id" name="workExp.unit_id" value="${employStaff.unit_id }"/>
- <div class="forum-container temp-form">
- <table style="width:100%">
- <tr>
- <td>工作单位<font color="red">*</font>:</td>
- <td >
- <input type="text" name="workExp.work_company" id="workExp.work_company" class="default-text" maxlength="30"/>
- </td>
- <td>职务:</td>
- <td>
- <input type="text" name="workExp.work_position" id="workExp.work_position" class="default-text"/>
- </td>
- </tr>
- <tr>
- <td>起止年月:</td>
- <td>
- <input type="text" name="workExp.work_start_date" id="workExp.work_start_date" class="default-text"/>
- </td>
- <td>起止年月:</td>
- <td>
- <input type="text" name="workExp.work_end_date" id="workExp.work_end_date" class="default-text"/>
- </td>
- </tr>
- <tr>
- <td>证明人:</td>
- <td>
- <input type="text" name="workExp.certifier" id="workExp.certifier" class="default-text"/>
- </td>
- <td>联系电话:</td>
- <td>
- <input type="text" name="workExp.contact_phone" id="workExp.contact_phone" class="default-text"/>
- </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="submitSaveExperience();" />
- </div>
- </div>
- <div id="maingrid3" style="margin: 0; padding: 0"></div>
- </form>
|