弹出复选框默认选中页面加载

时间:2012-02-14 00:01:35

标签: spring-mvc

在我的jsp中,我有以下Spring复选框元素:

<c:forEach var="a" items="${accountList}">
<tr>
<td width="5%">

<div align="center"><form:checkbox path="$primaryAccountId" disabled="true" 
value="${a.accountId}" onclick="someFunction()" /></div>

我的模型类中的primaryAccountId现在是List<Long>。所以我在想春天是如何决定是否在页面加载,是否应该选中复选框?

1 个答案:

答案 0 :(得分:-2)