AngularJS You can create a drop-down list option using an array or object.
AngularJS Select(select box) syntax
In AngularJS we can use the ng-option directive to create a drop-down list, and the list items are output through objects and arrays in a loop
AngularJS Select(select box) example
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="https://cdn.bootcss.com/angular.js/1.4.6/angular.min.js"></script> </head> <body> <div ng-app="myApp" ng-controller="myCtrl"> <select ng-init="selectedName = names[0]" ng-model="selectedName" ng-options="x for x in names"> </select> </div> <script> var app = angular.module('myApp', []); app.controller('myCtrl', function($scope) { $scope.names = ["Google", "php.cn", "Taobao"]; }); </script> <p>该实例演示了 ng-options 指令的使用。</p> </body> </html>
Run instance »
Click the "Run instance" button to view the online instance