最新的Web開發教程
 

AngularJS NG-禁用指令


禁用/啟用輸入字段:

Disable form fields: <input type="checkbox" ng-model="all">
<br>
<input type="text" ng-disabled="all">
<input type="radio" ng-disabled="all">
<select ng-disabled="all">
<option>Female</option>
<option>Male</option>
</select>
試一試»

定義和用法

ng-disabled指令設置表單域(輸入,選擇或文本域)的殘疾屬性。

如果裡面表達的表單字段將被禁用ng-disabled屬性返回true。

ng-disabled指令是要能夠在值之間切換truefalse 。 在HTML中,你不能設置disabled屬性為false (disabled屬性的存在使得禁用元素,不管它的價值)。


句法

<input ng-disabled=" expression "></input>

通過的<input>的支持下,<選擇>和<textarea>的元素。


參數值

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