这是弹簧形式,如何使用jquery选中所有复选框?
<form:form name="form" method="POST" commandName="da">
<table cellspacing="7">
<tr>
<td>Increment DA by:</td>
<td><form:input path="da" id="da"/></td>
</tr>
<tr>
<td>
<form:checkboxes items="${empids}" path="empids" delimiter="<br/>" id="empids"/>
</td>
</tr>
<tr>
<td colspan="2"><input type="submit" value="Save" ></td>
</tr>
</table>
</form:form>
答案 0 :(得分:2)
为所有复选框提供一个公共类,然后尝试这个......
$('.commonClass').attr('checked',true);