struts1 multibox

jsp页面中,迭代<html:multibox标签

struts1 multibox_第1张图片

对应的form对象中需要有属性selectedItems

private  String[] selectedItems=new String[0];类型为string数组;

struts配置文件中需要为

<form-bean name="RefForm"
type="com.eposcc.errorhanding.ref.struts.form.RefForm">
<form-property name="selectedItems"
type="java.lang.String[]" />


由此,action就可以取得被选中的checkbox值的数组了!



你可能感兴趣的:(struts1 multibox)