<label class="radio-inline">
<input name="display" type="radio" value="true" ng-model="institution.display" checked required>显示
</label>
<label class="radio-inline">
<input name="display" type="radio" value="false" ng-model="institution.display">隐藏</label>
angularjs如何預設選取第一個
使用
ng-checked
即可。institution.display 的值設為對應的
已檢查=「已檢查」
同時加上ng-model綁定元素就可以了
雙向綁定
雙向綁定
雙向綁定
重要的說三遍~~~
$scope.institution.display = "true";
即ng-model和value相同即可。
可在
ng-repeat
中使用ng-checked
, 形如: