例
必要な入力フィールドを作成します。
Required:
<input type="checkbox" ng-model="myVar">
<input name="myInput"
ng-model="myInput" ng-required="myVar">
»それを自分で試してみてください 定義と使用法
ng-required
ディレクティブは、フォームフィールド(入力またはテキストエリア)の必須属性を設定します。
内部表現場合、フォームフィールドが必要になりますng-required
属性がtrueを返します。
ng-required
ディレクティブは、間の値をシフトすることができることが必要であるtrue
とfalse
。 HTMLでは、あなたが設定することはできませんrequired
に属性false
(それが価値だかかわらず、必要な属性の存在が必要な要素になりますが)。
構文
<input ng-required=" expression "></input>
<入力>、<選択>、および<TEXTAREA>や他の編集可能な要素によってサポートされています
パラメーター値
Value | Description |
---|---|
expression | An expression that will set the required attribute if it returns true. |