使用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
試試這個呢