我的问题是我想在页面加载时检查我的复选框。
这些复选框当前位于用户表单的末尾,如下所示:
每个复选框对应一个规范对象。在我的模型图中,我添加了一个包含检查值的“规范”列表,以及一个包含所有值的“所有规范”列表:
List<Specification> specification=hot*******.get********otel(createHotel); //this is for check value.
List<Specification> allspecification=city****vice.getspec***fication(); //for all specification
map.addAttribute("orgspecification", specification);
map.addAttribute("allToatalspecfication", allspecification);
这是相应的 JSP 页面:
<div id="orgspecifications" style="margin-left:1px; height: 100px; width: 97%;">
<c:forEach step="1" items="${allToatalspecfication}" var="specification">
<div align="left" id="${specification.id}" style="width: 28%; color: #507B07; border: solid 1px gray; float: left; margin: 3px; height: 27px; background-color: #E9EBE3;">
<input type="checkbox" name="checkbox" value="${specification.id}" id="checkbox" class="selectall"/>
${specification.name}
</div>
</c:forEach>
</div>
问题是,我正在显示所有“所有规范”列表,但我还希望检查“规范”列表的元素。如何在页面加载时实现这一点?
提前致谢。