码迷,mamicode.com
首页 > 其他好文 > 详细

ng-repeat && ng-options的故事

时间:2015-08-13 15:38:56      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:

ng-repeat && ng-options的故事
 

 <select class="input-small" ng-model="newHost.os"

               style="width:102px;" ng-show="osType==2">
                <option ng-repeat="item in osList.Linux" value="{{item.id}}">{{item.name}}</option>
 </select>
 
<select class="input-small" ng-model="newHost.os"  style="width:102px;" ng-show="osType==2" ng-options="item.id as item.name for item in osList.Linux" ng-init="osList.Linux[0].id">
 </select> 
 
为了兼容性问题请用这一款~~哈哈~~

ng-repeat && ng-options的故事

标签:

原文地址:http://www.cnblogs.com/direction/p/4727452.html

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