4
4

More than 5 years have passed since last update.

AngularJS プルダウンメニューに未選択の項目を追加する

Posted at

ng-options で指定する option 用配列に「未選択」の項目は含めず、HTML に option タグを直接書く。

<select ng-model="data.id" ng-options="v.id as v.name for v in items">
    <option value="">未選択</option>
</select>
4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4