在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的值,应该怎么获得?
http://stackoverflow.com/questions/11872832/how-to-respond-to-clicks-on-a-checkbox-in-an-angularjs-directive
http://stackoverflow.com/questions/12648466/how-can-i-get-angular-js-checkboxes-with-select-unselect-all-functionality-and-i