AngularJS ng-disabled
指令
AngularJS 实例
禁用或启用输入框:
禁用表单输入域: <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>
<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 指令设置表单输入字段的 disabled 属性(input, select, 或 textarea)。
如果 ng-disabled
中的表达式返回 true 则表单字段将被禁用。
语法
<input ng-disabled="expression"></input>
<input>, <select>, 和 <textarea> 元素都支持该指令。
参数值
值 | 描述 |
---|---|
expression | 如果表达式返回true,则设置为元素添加 disabled 属性。 |
点我分享笔记