我在单选按钮列表中有项目(使用ng-repeat
)和button
(最初禁用ng-disabled
)继续。选择单选按钮后,我想启用“继续”按钮。
在 Angular 中执行此操作的正确方法是什么?
相关JS:
$scope.companies = [{
"id": 3,
"name": "Twitter"
}, {
"id": 2,
"name": "Google"
}, {
"id": 1,
"name": "Apple"
}]
相关HTML:
<table>
<tr ng-repeat="company in companies">
<td>
<input type="radio" ng-model="companyId" name="companyId" value="{{company.id}}" />{{company.name}}
</td>
</tr>
</table>
<button ng-disabled="!companyId">Continue</button>
谢谢!