首页 > 其他 > 详细

structs中通过LabelValueBean构建下拉列表

时间:2014-04-23 16:15:53      阅读:541      评论:0      收藏:0      [点我收藏+]
Action类中增加列表
 List<LabelValueBean> list = new ArrayList<LabelValueBean>();
list.add(new LabelValueBean("选项1","1"));
list.add(new LabelValueBean("选项2","2"));
list.add(new LabelValueBean("选项3","3"));
request.setAttribute("test",list);
jsp页面中引入struts标签<%@ taglib uri="/WEB-INF/struts-html.tld"  prefix="html" %>
 <html:form action="/groupAction">
  <html:select property="county_no">
    <html:optionsCollection name="test" />
  </html:select>
</html:form>

structs中通过LabelValueBean构建下拉列表,布布扣,bubuko.com

structs中通过LabelValueBean构建下拉列表

原文:http://www.cnblogs.com/javatech/p/3681342.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!