angular.js - angularjs如何默认选中radio
PHP中文网
PHP中文网 2017-05-15 16:55:10
0
6
1373
<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如何默认选中第一个

PHP中文网
PHP中文网

认证0级讲师

Antworte allen(6)
为情所困

使用 ng-checked 即可。

<label class="radio-inline">
  <input name="display" type="radio" value="true" ng-model="institution.display" ng-checked="true" required>
    显示
</label>
<label class="radio-inline">
  <input name="display" type="radio" value="false" ng-model="institution.display">
  隐藏
</label>
仅有的幸福

institution.display 的值设成对应的

某草草

checked = "checked"

过去多啦不再A梦
ng-checked  

同时加上ng-model绑定元素就可以了

某草草

双向绑定
双向绑定
双向绑定
重要的说三遍~~~

$scope.institution.display = "true";

即ng-model和value相同即可。

淡淡烟草味

可在 ng-repeat 中使用 ng-checked , 形如:

<label ng-repeat="(key, val) in genders track by $index">
    <input type="radio" name="gender" value="{{key}}" ng-checked="list.gender==key">{{val}}
</label>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage