AngularJS ng-options 指令
AngularJS ng-options 指令用于使用 <options> 填充 <select> 元素的选项
ng-options 指令使用数组来填充下拉列表,多数情况下与 ng-repeat 指令一起使用
语法
<select ng-options="array expression"></select>
<details> 元素支持该指令
参数值
值 | 描述 |
---|---|
array expression | 数组中为 select 元素填充选项的表达式 |
范例
使用数组元素填充下拉列表
<div ng-app="myApp" ng-controller="myCtrl"> <select ng-model="selectedName" ng-options="item for item in names"></select> </div> <script> var app = angular.module('myApp', []); app.controller('myCtrl', function($scope) { $scope.names = ["腾讯", "阿里", "百度"]; }); </script>