例
使所需的輸入域:
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>
支持的<input>,<選擇>和<textarea>的等元素編輯
參數值
Value | Description |
---|---|
expression | An expression that will set the required attribute if it returns true. |