最新のWeb開発のチュートリアル
 

AngularJS NG-選択指令


読み取り専用の入力フィールドを作成します。

Click here to select BMW as your favorite car:
<input type="checkbox" ng-model="mySel">

<p>My Favourite car:</p>

<select>
<option>Volvo</option>
<option ng-selected="mySel">BMW</option>
<option>Ford</option>
</select>
»それを自分で試してみてください

定義と使用法

ng-selectedディレクティブは、<select>のリスト内の<option>要素の選択属性を設定します。

内部表現場合、このオプションが選択されますng-selected属性がtrueを返します。

ng-selectedディレクティブは、間の値をシフトすることができることが必要であるtruefalse 。 HTMLでは、あなたが設定することはできませんselectedに属性をfalse (選択した属性の存在は、要素が関係なく、それの値の選択になります)。


構文

<option ng-selected=" expression "></option>

<オプション>要素でサポートされています。


パラメーター値

Value Description
expression An expression that will set the element's selected attribute if it returns true.