experienceInfo.jsp 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <%@ page contentType="text/html;charset=GBK"%>
  2. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  3. <form name="experienceForm" action="" method='post'>
  4. <!-- 是否为 查看-->
  5. <c:if test="${isView != 1}">
  6. <div class="forum-container temp-form">
  7. <input type="hidden" id="experienceId" name="experienceId" value="">
  8. <table style="width:100%">
  9. <tr>
  10. <td>工作单位<font color="red">*</font>:</td>
  11. <td >
  12. <input type="text" name="work_company" id="work_company" class="default-text" maxlength="30"/>
  13. </td>
  14. <td>职务:</td>
  15. <td>
  16. <input type="text" name="work_position" id="work_position" class="default-text"/>
  17. </td>
  18. </tr>
  19. <tr>
  20. <td>起止年月:</td>
  21. <td>
  22. <input type="text" name="work_start_end_time" id="work_start_end_time" class="default-text"/>
  23. </td>
  24. <td>离职原因:</td>
  25. <td>
  26. <input type="text" name="work_resignation_reason" id="work_resignation_reason" class="default-text"/>
  27. </td>
  28. </tr>
  29. </table>
  30. <div style="margin: 5px auto;text-align: left">
  31. &nbsp;<input type="button" value="清空" id="resetBtn" class="l-button" style="width:100px;" onclick="resetForm()"/>&nbsp;
  32. <input type="button" value="保存" id="saveBtn"
  33. class="l-button" style="width: 100px;" onclick="submitSaveExperience();" />
  34. <%-- <c:choose> --%>
  35. <%-- <c:when test="${isEdit == false }"> --%>
  36. <!-- <input type="button" value="更新经历到列表" id="saveBtn" class="l-button" style="width:100px;" onclick="submitAddeExperience();"/> -->
  37. <%-- </c:when> --%>
  38. <%-- <c:otherwise> --%>
  39. <!-- <input type="button" value="新增经历到列表" id="saveBtn" class="l-button" style="width:100px;" onclick="submitEditExperience();"/> -->
  40. <%-- </c:otherwise> --%>
  41. <%-- </c:choose> --%>
  42. </div>
  43. </div>
  44. </c:if>
  45. <div id="maingrid3" style="margin: 0; padding: 0"></div>
  46. </form>