最新的Web開發教程
 

AngularJS NG-只讀指令


使得輸入域只讀:

Readonly: <input type="checkbox" ng-model="all">
<br>
<input type="text" ng-readonly="all">
試一試»

定義和用法

ng-readonly指令設置表單域(輸入或文本域)的只讀屬性。

表單字段將是只讀的,如果裡面的表達ng-readonly屬性返回true。

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


句法

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

通過的<input> <textarea>的元素都支持。


參數值

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