当前位置: 代码迷 >> Java Web开发 >> struts中怎么得到html:checkbox的个数
  详细解决方案

struts中怎么得到html:checkbox的个数

热度:87   发布时间:2016-04-17 13:08:30.0
struts中如何得到html:checkbox的个数?
checkbox的property都是chkSelect同一个名字
FormBean中属性设置为:
private   String[]   chkSelect;
那么如何得到页面中的checkbox的个数呢?

------解决方案--------------------
struts中checkbox对应后台的FormBean是Boolean形
LZ想实现HTML中的复选框的checkbox应该使用html:multibox
具体用法:
<html:multibox property= "interest " value= "看书 " /> 看书
<html:multibox property= "interest " value= "上网 " /> 上网
<html:multibox property= "interest " value= "游戏 " /> 游戏
<!-- <html:errors property= "interest "/> -> -- 这个不用也行
FormBean中对应
private String[] interest;
Action中Execute(..................){
String[] interests = registerForm.getInterest();//得到FormBean中的数组
}
  相关解决方案