ホームページ  >  記事  >  ウェブフロントエンド  >  ng-options を使用して AngularJS で動的なドロップダウン リストを作成するにはどうすればよいですか?

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

Linda Hamilton
Linda Hamiltonオリジナル
2024-11-09 00:54:02980ブラウズ

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">

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

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