我在html中使用了spring标签。我的jsp有一组复选框,它从模型对象" allTimeslots"中呈现值。该对象具有字符串列表。
form:checkboxes element="li" path="timeslotId" id="checkbox" type="checkbox"
items="${allTimeslots}" /></td></tr></table>
现在,我的要求是检查在提交表单时是否检查了至少一个复选框。我正在使用jquery验证,必须进行此项检查。 我不能使用type =&#34;复选框&#34;因为春天的标签不允许这样做。 请建议。
答案 0 :(得分:0)
<form:checkboxes element="li" path="timeslotId"
items="${allTimeslots}" />
并在javascript中
$('input[name="timeslotId"]:checked').length > 0
将完成这项工作。