angularjs select 赋值 ng-options配置方式
每日一看
数组方式
数据是数组
$scope.years = [2014, 2015, 2016];
1
1
页面元素
<select ng-model="item" ng-options="item as y for y in years">
</select>
1
2
1
2
设置默认值
如果需要设置默认的选项,可以先设置一个参数:
$sc...
原创
2017-03-14 20:44:06 ·
827 阅读 ·
0 评论