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