例
使得输入域只读:
Readonly: <input type="checkbox" ng-model="all">
<br>
<input type="text" ng-readonly="all">
试一试» 定义和用法
在ng-readonly
指令设置表单域(输入或文本域)的只读属性。
表单字段将是只读的,如果里面的表达ng-readonly
属性返回true。
的ng-readonly
指令是必要能够为值之间转换true
和false
。 在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. |