为了账号安全,请及时绑定邮箱和手机立即绑定

你好,请问以下关于html:optionsCollection语句的问题?

你好,请问以下关于html:optionsCollection语句的问题?

小怪兽爱吃肉 2021-09-08 07:07:19
html:optionsCollection怎么使用?给个简单的例子。
查看完整描述

2 回答

?
翻翻过去那场雪

TA贡献2065条经验 获得超13个赞

使用 <html:optionsCollection> 标签
1)在ActionForm中加入字段
private List cityList=new ArrayList();
2)加入必须的getter方法
public List getCityList() {
return cityList;
}
3)在reset方法内给cityList填充内容
cityList.add(new LabelValueBean( "北京市 ", "010 "));
cityList.add(new LabelValueBean( "广州市 ", "020 "));
cityList.add(new LabelValueBean( "上海市 ", "021 "));
4)JSP标签中使用
<html:select property= "city2 ">
<html:optionsCollection property= "cityList " label= "label " value= "value "/>
</html:select>



查看完整回答
反对 回复 2021-09-13
?
HUH函数

TA贡献1836条经验 获得超4个赞

<html:form action= " " >
<html:select property= "tt " >
<logic:iterate id= "bbc " name= "array ">
<option value= "${bbc} "> <bean:write name= "bbc "/> </option>
</logic:iterate>
</html:select>
</html:form>

查看完整回答
反对 回复 2021-09-13
  • 2 回答
  • 0 关注
  • 296 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信