angular.js - angularjs如何預設選取radio
PHP中文网
PHP中文网 2017-05-15 16:55:10
0
6
1356
<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级讲师

全部回覆(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 的值設為對應的

某草草

已檢查=「已檢查」

过去多啦不再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>
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板