扫码关注官方订阅号
显示 隐藏
angularjs如何默认选中第一个
认证0级讲师
使用 ng-checked 即可。
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"
同时加上ng-model绑定元素就可以了
双向绑定双向绑定双向绑定重要的说三遍~~~
$scope.institution.display = "true";
即ng-model和value相同即可。
可在 ng-repeat 中使用 ng-checked , 形如:
ng-repeat
<label ng-repeat="(key, val) in genders track by $index"> <input type="radio" name="gender" value="{{key}}" ng-checked="list.gender==key">{{val}} </label>
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
使用
ng-checked即可。institution.display 的值设成对应的
checked = "checked"
同时加上ng-model绑定元素就可以了
双向绑定
双向绑定
双向绑定
重要的说三遍~~~
$scope.institution.display = "true";
即ng-model和value相同即可。
可在
ng-repeat中使用ng-checked, 形如: