| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <%@ page contentType="text/html;charset=GBK"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
- <form name="experienceForm" action="" method='post'>
- <!-- 是否为 查看-->
- <c:if test="${isView != 1}">
- <div class="forum-container temp-form">
- <input type="hidden" id="experienceId" name="experienceId" value="">
- <table style="width:100%">
- <tr>
- <td>工作单位<font color="red">*</font>:</td>
- <td >
- <input type="text" name="work_company" id="work_company" class="default-text" maxlength="30"/>
- </td>
- <td>职务:</td>
- <td>
- <input type="text" name="work_position" id="work_position" class="default-text"/>
- </td>
- </tr>
- <tr>
- <td>起止年月:</td>
- <td>
- <input type="text" name="work_start_end_time" id="work_start_end_time" class="default-text"/>
- </td>
- <td>离职原因:</td>
- <td>
- <input type="text" name="work_resignation_reason" id="work_resignation_reason" 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();" />
- <%-- <c:choose> --%>
- <%-- <c:when test="${isEdit == false }"> --%>
- <!-- <input type="button" value="更新经历到列表" id="saveBtn" class="l-button" style="width:100px;" onclick="submitAddeExperience();"/> -->
- <%-- </c:when> --%>
- <%-- <c:otherwise> --%>
- <!-- <input type="button" value="新增经历到列表" id="saveBtn" class="l-button" style="width:100px;" onclick="submitEditExperience();"/> -->
- <%-- </c:otherwise> --%>
- <%-- </c:choose> --%>
- </div>
- </div>
- </c:if>
- <div id="maingrid3" style="margin: 0; padding: 0"></div>
- </form>
|