关系管理系统:更新用户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>

 

转载于:https://www.cnblogs.com/lichone2010/p/3178659.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值