编辑这个页面须要登录或更高权限!
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="https://cdn.staticfile.org/angular.js/1.4.6/angular.min.js"></script> </head> <body ng-app=""> 勾选复选框设置输入框为只读:<input type="checkbox" ng-model="all"><br> <br> <input type="text" ng-readonly="all"> </body> </html>测试看看 ‹/›
ng-readonly 指令用于设置表单域(input 或 textarea) 的 readonly 属性。
如果 ng-readonly 属性的表达式返回 true 则表单域为只读。
<input ng-readonly="expression"></input>
<input> <textarea> 元素支持该指令。
值 | 描述 |
---|---|
expression | 表达式返回 true 则表单域为只读。 |