angularjs 单选按钮动态加载,单选按钮使用ng-model和ng-checked

问题描述

angularjs的开发中,我们有时候可能会使用ng-repeat指令动态生成一系列的单选框radio集合,如下:

<li ng-repeat="person in people">
    <label>{{person.name}}
        <input type="radio" name="name" required="required"/>
    </label>
</li>

那么,在angularjs的开发中,我们如何设置这个由ng-repeat动态生成的单选框列表的默认选中项呢?

方案一

使用ng-modelradiovalue值一致原则来选中默认的单选项,如下:

HTML:

<div ng-controller="MyCtrl">
    <section id="section_1">
      <p>Favorite Beatle:</p>
      <ul>
          <li ng-repeat="person in people">
              <label>{{person.name}}
                  <input type="radio" ng-model="$parent.favoriteBeatle"
                  name="name" value="{{person.name}}" required="required"/>
              </label>
          </li>
      </ul>
      <p>Your favorite Beatle is <strong>{{favoriteBeatle}}</strong>.</p>
    </section>
</div>

Angular.js:

function MyCtrl($scope) {
    $scope.people = [{
        name: "John"
    }, {
        name: "Paul"
    }, {
        name: "George"
    }, {
        name: "Ringo"
    }];
    $scope.favoriteBeatle = 'Paul';

    setTimeout(function () {
        $('input[value=George]').trigger('click');

    }, 2000);

    setTimeout(function () {
        $('input[value=George]').trigger('click');
    }, 4000);
}

方案二

使用ng-checked即可,如下:

HTML:

<div ng-controller="MyCtrl">
    <section id="section_2">
      <p>Favorite color:</p>
      <ul>
          <li ng-repeat="color in colors">
              <label>{{color.name}}
                  <input type="radio" ng-checked="(favoriteColor==color.name)"
                  name="color" ng-click="handleFavoriteColor(color)" ng-value="{{color.name}}" required="required"/>
              </label>
          </li>
      </ul>
    <p>Your favorite color is <strong>{{favoriteColor}}</strong>.</p>
    </section>
</div>

Angular.js:

function MyCtrl($scope) {   
    $scope.colors = [{
        name: "Red"
    }, {
        name: "Green"
    }, {
        name: "Blue"
    }, {
        name: "Yellow"
    }];

    $scope.favoriteColor ='Blue';

    $scope.handleFavoriteColor = function(color){
        $scope.favoriteColor =color.name;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值