例
読み取り専用の入力フィールドを作成します。
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>
<入力>、<TEXTAREA>要素でサポートされています。
パラメーター値
Value | Description |
---|---|
expression | An expression that will set the element's readonly attribute if it returns true. |