angularjs如何默认选中radio
Posted 阿力瓦
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了angularjs如何默认选中radio相关的知识,希望对你有一定的参考价值。
(1)、
使用 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>
(2)、
双向绑定
双向绑定
双向绑定
重要的说三遍~~~
$scope.institution.display = "true";
即ng-model和value相同即可。
(https://segmentfault.com/q/1010000003712548)
以上是关于angularjs如何默认选中radio的主要内容,如果未能解决你的问题,请参考以下文章