根据值选定多选框,选中多选框,根据存在的数据选中多选框

阅读更多
第一个list为所有的多选框的值,
第二个lists为默认选中的值。
<%
   for(int i = 0 ;i       DeptnoForm df = (DeptnoForm)list.get(i);
    %>
            for(int j = 0 ;j       AreaForm a = new AreaForm();
      a=(AreaForm)lists.get(j);
      if(a.getDeptno().equals(df.getDeptno())){
      out.print("checked");
      }
      }
      %> type="checkbox" id="deptno" name="deptno" value="<%=df.getDeptno()%>">     <%=df.getName()%>

    <%
  
    }
   %>

你可能感兴趣的:(list,多选框,值,默认,选中选定)