suchen

Heim  >  Fragen und Antworten  >  Hauptteil

angular.js - ng-repeat中的单选框默认选中第一项

ng-repeat生成的几个单选框,怎么默认选中第一个

<p class="radio"ng-repeat="item in imgList">
  <label>
    <input type="radio" name="opt"
           ng-value="item.id"
           ng-click="seleMon($event)"
           ng-model="selectedMonth">
    <span>{{item.mon}}</span>
  </label>
</p>

js

$scope.imgList = [
      {
        'mon':'1月',
        'id':'1',
      },
      {
        'mon':'2月',
        'id':'2',
      },
      {
        'mon':'3月',
        'id':'3',
      },
      {
        'mon':'4月',
        'id':'4',
      }
 ]
$scope.selectedMonth = $scope.imgList[0];

这个为什么不能实现默认选中第一项,应该怎么改?

PHP中文网PHP中文网2744 Tage vor713

Antworte allen(3)Ich werde antworten

  • 过去多啦不再A梦

    过去多啦不再A梦2017-05-15 17:12:19

    **$scope.selectedMonth = $scope.imgList[0].id;**
    

    ng-valueng-model要能匹配,你当前的写法,ng-model是对象,ng-value是字符串。把id加上就好了。

    Antwort
    0
  • 曾经蜡笔没有小新

    曾经蜡笔没有小新2017-05-15 17:12:19

    cheked={{$index}}==1?true:false;

    Antwort
    0
  • 曾经蜡笔没有小新

    曾经蜡笔没有小新2017-05-15 17:12:19

    selectedMonth = 1;

    Antwort
    0
  • StornierenAntwort