最新的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.