在ng-repeat中选择多个单选按钮的方法是使用ng-model指令结合ng-value指令来实现。具体步骤如下:
<div ng-repeat="item in items">
<input type="radio" ng-model="selectedItem" ng-value="item">{{ item }}
</div>
$scope.selectedItem = null;
$scope.submit = function() {
console.log($scope.selectedItem);
};
通过以上步骤,就可以在ng-repeat中选择多个单选按钮了。每次用户选择不同的单选按钮时,selectedItem变量的值会自动更新为用户选择的项。
这种方法适用于需要从多个选项中选择一个的场景,例如问卷调查、表单填写等。如果需要选择多个选项,可以考虑使用复选框(checkbox)来实现。
领取专属 10元无门槛券
手把手带您无忧上云