默认情况下,如何将复选框保持为未选中状态?这是我的部分HTML视图。
<md-checkbox class="md-primary" ng-model="mailingSameAsPermanent" ng-checked="false"><!--ng-change="click()">-->
Tick if your mailing address is the same as your permanent address
</md-checkbox>
{{someinput}}
我的角度控制器中没有任何东西。
答案 0 :(得分:0)
在控制器中初始化$scope.mailingSameAsPermanent = false
。或者在html中作为
<md-checkbox class="md-primary" ng-model="mailingSameAsPermanent" ng-init="mailingSameAsPermanent = false"></md-checkbox>
答案 1 :(得分:0)
::在Controller ::
$scope.checkbox = false;
:: HTML ::
<md-checkbox ng-model="checkbox" aria-label="Checkbox 1">
Checkbox 1: {{ checkbox }}
</md-checkbox>