12345678910111213141516171819 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@ taglib prefix="s" uri="/struts-tags" %>
- <form id="updateForm" method="post">
- <input type="hidden" id="id_update" name="contacts.id">
- <table class="mytable" style="width: 100%;">
- <tr>
- <th width="30%">组名</th>
- <td width="70%">
- <input type="text" id="name_update" name="contacts.name" class="easyui-validatebox" required="true" style="width: 172px">
- </td>
- </tr>
- <tr>
- <th>备注</th>
- <td>
- <textarea rows="4" cols="" style="width: 100%" name="contacts.remark" id="remark_update"></textarea>
- </td>
- </tr>
- </table>
- </form>
|