关于<html:multibox>标签的再次理解,以下代码并没有多大实际用途,至少我是这么觉得。但从中可以看出,只要对象数组中的元素和标签中的value一一对象,那么复选框就是选中状态^_^
此种状态复选框全为不选:
<table border="1" width="100%" >
<tr>
<td width = "200"></td>
<td width="100%"><div align="center">
<logic:iterate id="loop" name="arrays">
<div align="center">
此种状态复选框全为不选:
<table border="1" width="100%" >
<tr>
<td width = "200"></td>
<td width="100%"><div align="center">
<logic:iterate id="loop" name="arrays">
<div align="center">
Tags: multibox
这里写下在前台实现全选的方法:
<logic:iterate id="emps" indexId="indexid" name="EMPS" type="companypj.vo.EmployeeVO">
<!--遍历出复选框元素--!>
<html:multibox name="emps" property="strArrary" onclick="checkItem(this, 'mmAll')">
<bean:write name="emps" property="id"/>
</html:multibox>
姓名:<bean:write name="emps" property="name"/>
</logic:iterate>
复制内容到剪贴板 程序代码
<logic:iterate id="emps" indexId="indexid" name="EMPS" type="companypj.vo.EmployeeVO">
<!--遍历出复选框元素--!>
<html:multibox name="emps" property="strArrary" onclick="checkItem(this, 'mmAll')">
<bean:write name="emps" property="id"/>
</html:multibox>
姓名:<bean:write name="emps" property="name"/>
</logic:iterate>
Tags: multibox