从ng-repeat动态生成复选框

时间:2017-08-12 05:41:17

标签: angularjs

我正在尝试使用ng-repeat生成复选框。从下拉列表中选择一个值后,我将根据所选值获取值。但是,在选中任何复选框后,首先选中复选框。我无法选择其他复选框任何人都可以告诉我们如何选择任何一个复选框或多个复选框,以便我可以根据ng-model绑定这些值。

这是html代码

    <div class="form-group" data-ng-repeat="collegesByType in 
    collegesByTypes">
    <div class="be-checkbox">
    <input data-ng-model="committee.collegeId" name="collegeId"
    type="hidden"
    value="0">
    <input data-to-date="currently_todate386" 
    id="currently_checkbox386" class="currently" type="checkbox" 
    value="1">
    <label for="currently_checkbox386">{{collegesByType.name}}</label>
    </div>
    </div>

0 个答案:

没有答案