使用angular如何实现让checkbox单选,只能选择一个呢?
如图,以下是table中的checkbox选项:
<td width="30" style="text-align: left"><input
type="checkbox" ng-model="checkboxes.items[item.bookingId]" name="flag" ng-click="updateSelection(item.bookingId,checkboxes.items)"/></td>
如果在对象的controller里面实现,只能让其单选,选择一个呢??
checkbox是复选框,单选请用radio
试试这个呢