例
無効/入力フィールドを有効にします。
Disable form fields: <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>
»それを自分で試してみてください 定義と使用法
ng-disabled
ディレクティブは、フォームフィールド(入力、選択、またはテキストエリア)のdisabled属性を設定します。
内部表現場合、フォームフィールドが無効になりますng-disabled
属性がtrueを返します。
ng-disabled
ディレクティブは、間の値をシフトすることができることが必要であるtrue
とfalse
。 HTMLでは、あなたが設定することはできませんdisabled
に属性をfalse
(disabled属性の存在は、要素が関係なく、それの価値を、無効になります)。
構文
<input ng-disabled=" expression "></input>
<選択>、<入力>でサポートされている、そして、<TEXTAREA>要素。
パラメーター値
Value | Description |
---|---|
expression | An expression that will set the element's disabled attribute if it returns true. |