AngularJS 配列またはオブジェクトを使用してドロップダウン リスト オプションを作成できます。
AngularJS 選択(セレクトボックス) 構文
AngularJS では、ng-option ディレクティブを使用してドロップダウン リストを作成でき、リスト項目はループ内のオブジェクトと配列を通じて出力されます
AngularJS 選択(セレクトボックス) 例
<!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>
インスタンスの実行 »
[インスタンスの実行] ボタンをクリックしてオンライン インスタンスを表示します