struts1中select下拉列表的使用

Struts1中的单选下拉框简单实用像下面这样:

<html:form action="education" method="post">
<html:select property="education">
<html:options collection="edu2" property="value"
labelProperty="label"
/>
</html:select>
<html:submit value="submit"/>
</html:form>

<html:select>education为你form文件中的一个property,存放你选中的值。

<html:options>是下拉列表选项,collection属性需要一个集合,比如arraylist,

vector。并且集合的元素都是一个bean


1.你可以使用struts提供的LabelValueBean,直接

这样使用

<%  
ArrayList alist=new ArrayList();
alist.add(new LabelValueBean("1","xiaoxue"));
alist.add(new LabelValueBean("2","chuzhong"));
alist.add(new LabelValueBean("3","gaozhong"));
request.setAttribute("edu2", alist);
%>

<html:options>Property属性 和 labelProperty属性分别代表下拉框中的值(form中接收到的值)以及列表中显示出来的值,如果使用struts提供的LabelValueBean,你只需要写上value和label就可以了。像下面:

<html:form action="education" method="post">
<html:select property="education">
<html:options collection="edu2" property="value"
labelProperty="label"
/>
</html:select>
<html:submit value="submit"/>
</html:form>

2.也可以使用自定义的bean,像下面这样先自定义一个

public class Education {
private String id;
private String schoolName;
public Education(String id,String schoolName)
{
this.id=id;
this.schoolName=schoolName;
}


public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getSchoolName() {
return schoolName;
}
public void setSchoolName(String schoolName) {
this.schoolName = schoolName;
}


}

然后

<%  
ArrayList alist=new ArrayList();
alist.add(new Education("1","xiaoxue"));
alist.add(new Education("2","chuzhong"));
alist.add(new Education("3","gaozhong"));
request.setAttribute("edu", alist);
%>

如果使用自定义的bean,填写bean中的字段名,像下面这样

<html:form action="education" method="post">
<html:select property="education">
<html:options collection="edu" property="id"
labelProperty="schoolName"
/>
</html:select>
<html:submit value="submit"/>
</html:form>




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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值