例
読み取り専用の入力フィールドを作成します。
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
ディレクティブは、間の値をシフトすることができることが必要であるtrue
とfalse
。 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. |