struts操纵单选按钮的三种办法[Java编程]
本文“struts操纵单选按钮的三种办法[Java编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
struts中利用单选按钮有三种方法:
1.利用<html:option>标签
<html:select property="city">
<html:option value="010">北京市</html:option>
<html:option value="020">广州市</html:option>
<html:option value="021">上海市</html:option>
</html:select>
2.利用<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>
3.利用<html:options>标签
<%List cityList=new ArrayList();
cityList.add(new LabelValueBean("北京市","010"));
cityList.add(new LabelValueBean("广州市", "020"));
cityList.add(new LabelValueBean("上海市", "021"));
request.setAttribute("list",cityList); //必须是request对象
%>
<html:select property="city3">
<html:options collection="list" labelProperty="label" property="value"/>
</html:select>
以上是“struts操纵单选按钮的三种办法[Java编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |