• 关系管理系统:更新用户jsp页面


    <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
    <%@taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
      <head>
        <title>更新用户</title>
        <script type="text/javascript" src="${pageContext.request.contextPath }/js/customer.js"></script>
      </head>
      
       <body style="text-align: center;" onload="pageInit()">
        
        <form action="${pageContext.request.contextPath }/servlet/UpdateCustomerServlet" method="post" onsubmit="return dosubmit()" id="customer">
        <table width="55%" border="1">
        
            <input type="hidden" name="id" value="${customer.id }">
            <tr>
                <td>客户姓名</td>
                <td>
                    <input type="text" name="name" value="${customer.name }">
                </td>
            </tr>
            
            <tr>
                <td>性别</td>
                <td>
                    <input type="radio" name="gender" value="男" ${customer.gender=='男'?'checked':'' }><input type="radio" name="gender" value="女" ${customer.gender=='女'?'checked':'' }></td>
            </tr>
            
            <tr>
                <td>生日</td>
                <td>
                    <select id="year">
                        <option value="${fn:split(customer.birthday,'-')[0] }">${fn:split(customer.birthday,'-')[0] }</option>
                    </select><select id="month">
                        <option value="${fn:split(customer.birthday,'-')[1] }">${fn:split(customer.birthday,'-')[1] }</option>
                    </select><select id="day">
                        <option value="${fn:split(customer.birthday,'-')[2] }">${fn:split(customer.birthday,'-')[2] }</option>
                    </select></td>
            </tr>
    
            <tr>
                <td>手机</td>
                <td>
                    <input type="text" name="cellphone" value="${customer.cellphone }">
                </td>
            </tr>
            
            <tr>
                <td>邮箱</td>
                <td>
                    <input type="text" name="email" value="${customer.email }">
                </td>
            </tr>
        
            <tr>
                <td>爱好</td>
                <td>
                    <c:forEach var="pre" items="${preferences}">
                        <input type="checkbox" name="pre" value="${pre }" ${fn:contains(customer.preference,pre)?'checked':'' }>${pre }
                    </c:forEach>
                </td>
            </tr>
            
            <tr>
                <td>客户类型</td>
                <td>
                    <c:forEach var="type" items="${types}">
                        <input type="radio" name="type" value="${type }" ${customer.type==type?'checked':'' }>${type }
                    </c:forEach>
                </td>
            </tr>
            
            <tr>
                <td>客户备注</td>
                <td>
                    <textarea rows="5" cols="50" name="description">${customer.description }</textarea>
                </td>
            </tr>
            
            <tr>
                <td>
                    <input type="reset" value="清空">
                </td>
                <td>
                    <input type="submit" value="修改客户">
                </td>
            </tr>
        
        </table>
        </form>
        
      </body>
    </html>
  • 相关阅读:
    输入挂
    最长递增子序列nlogn的做法
    lca 倍增模版
    讨厌字符串
    js的事件处理与闭包:
    http
    html的语义化
    js性能优化
    js的缓存
    字面量声明和函数式声明
  • 原文地址:https://www.cnblogs.com/lichone2010/p/3178659.html
Copyright © 2020-2023  润新知