码迷,mamicode.com
首页 > Web开发 > 详细

angularjs如何默认选中radio

时间:2017-05-09 11:08:46      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:tool   model   required   data-   绑定   重要   lin   string   splay   

(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

标签:tool   model   required   data-   绑定   重要   lin   string   splay   

原文地址:http://www.cnblogs.com/aliwa/p/6829237.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!