最新的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指令設置一個<option>元素的在<選擇>列表中選定的屬性。

如果裡面表達的選項將被選中ng-selected屬性返回true。

ng-selected指令是必要能夠為值之間轉換truefalse 。 在HTML中,你不能設置selected屬性為false (選定屬性的存在使得選擇的元素,不管它的價值)。


句法

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

由<option>元素的支持。


參數值

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