update.jsp 646 B

12345678910111213141516171819
  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="contacts.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="contacts.name" class="easyui-validatebox" required="true" style="width: 172px">
  10. </td>
  11. </tr>
  12. <tr>
  13. <th>备注</th>
  14. <td>
  15. <textarea rows="4" cols="" style="width: 100%" name="contacts.remark" id="remark_update"></textarea>
  16. </td>
  17. </tr>
  18. </table>
  19. </form>