angular 中怎么方便的得到许多被选中的checkbox的某个属性的值?

在angular中如何获得由ng-repeat生成的多个被选中checkbox的值

<tr ng-repeat="ce in certs">
    <td>
        <input type="checkbox" class="cer" certid="ce.id">{{checkedList}}
    </td>
    <td>{{$index+1}}</td>
    <td ng-bind="ce.name"></td>
    <td ng-bind="ce.status_name"></td>
</tr>                                                                                        

例如我想获得被选中的checkbox的certid的值,应该怎么获得?

阅读 6.8k
推荐问题