我试图使用angular =获取复选框的值。我在HTML页面上有java对象。当用户检查单个框时,单个值应该在我的数组中,如果用户选中all all,那么应该选中所有框,并且数组应该包含所有复选框值,并且当取消选中all all时应该取消选中它。这是代码请给我一些解决方案。
<input type="checkbox" value="Select All">
<label>
<c:forEach items="${sellerProductsDto.sellerProductColorsDtos}" var="colors">
<input type="checkbox" value="${colors.keyId}" ng-model=""> ${colors.colorName}
</c:forEach>
</label>
答案 0 :(得分:0)
这可能会有所帮助。它为checkboxlist
提供指令https://vitalets.github.io/checklist-model/
检查演示
http://jsfiddle.net/yasirzuberi/r1Lc3ba0/4/