最新のWeb開発のチュートリアル
 

AngularJS ngの禁止指令


無効/入力フィールドを有効にします。

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ディレクティブは、間の値をシフトすることができることが必要であるtruefalse 。 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.