性 别: <s:select list="#{'1':'男','2':'女'}" cssClass="msg" name="gender"></s:select> <br/><br/> <input id="zc" class="btn" type="submit" value="注册 "/>package cn.itcast.domain;import java.sql.Date;public class Employee { private Integer id; //编号 private String loginName;//登陆名 private String password;//登陆密码 private String name; //姓名 private Integer gender;//性别 private Date birthday;//生日 private Date entryDate;//入职日期 private String empNO;//员工号 private Department department; public Employee() { super(); } public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getLoginName() { return loginName; } public void setLoginName(String loginName) { this.loginName = loginName; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Integer getGender() { return gender; } public void setGender(Integer gender) { this.gender = gender; } public Date getBirthday() { return birthday; } public void setBirthday(Date birthday) { this.birthday = birthday; } public Date getEntryDate() { return entryDate; } public void setEntryDate(Date entryDate) { this.entryDate = entryDate; } public String getEmpNO() { return empNO; } public void setEmpNO(String empNO) { this.empNO = empNO; } public Department getDepartment() { return department; } public void setDepartment(Department department) { this.department = department; } }
性别用单选框就行了;
性别 <s:radio label="性别" list="#{'男':'男','女':'女'}" name="sex"></s:radio>
HTML怎么学习?HTML怎么入门?HTML在哪学?HTML怎么学才快?不用担心,这里为大家提供了HTML速学教程(入门课程),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号