update.jsp 863 B

1234567891011121314151617181920212223242526
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@ taglib prefix="s" uri="/struts-tags" %>
  3. <form id="updateForm" method="post">
  4. <input type="hidden" id="id_update" name="contactPerson.id">
  5. <table class="mytable" style="width: 100%;">
  6. <tr>
  7. <th width="30%">姓名</th>
  8. <td width="70%">
  9. <input type="text" id="name_update" name="contactPerson.name" class="easyui-validatebox" required="true" style="width: 172px">
  10. </td>
  11. </tr>
  12. <tr>
  13. <th>电话</th>
  14. <td>
  15. <input type="text" id="phone_update" name="contactPerson.phone" class="easyui-validatebox" required="true" style="width: 172px">
  16. </td>
  17. </tr>
  18. <tr>
  19. <th>组名称</th>
  20. <td>
  21. <select name="contactPerson.contactsId" id="contactsId_update" class="easyui-validatebox" required="true">
  22. </select>
  23. </td>
  24. </tr>
  25. </table>
  26. </form>