ng-options を使用して AngularJS で動的なドロップダウン リストを作成するにはどうすればよいですか?

Linda Hamilton
リリース: 2024-11-09 00:54:02
オリジナル
979 人が閲覧しました

How do you create dynamic dropdown lists in AngularJS using ng-options?

AngularJS の ng-options を使用した選択の操作

AngularJS では、ng-options ディレクティブを使用して

<select ng-model="selectedItem" ng-options="item.id as item.title for item in items">
ログイン後にコピー

デフォルト オプションの選択

デフォルトで特定のオプションを選択するには、ng-init ディレクティブを使用します。

<select ng-model="selectedItem" ng-init="selectedItem = items[1]" ng-options="item.id as item.title for item in items">
ログイン後にコピー

デフォルト オプションのカスタマイズ

カスタム オプションを追加する