最新的Web開發教程
 

AngularJS NG-指令要求


使所需的輸入域:

Required:
<input type="checkbox" ng-model="myVar">

<input name="myInput" ng-model="myInput" ng-required="myVar">
試一試»

定義和用法

ng-required指令設置窗體域(輸入或文本域)的必需屬性。

如果裡面表達的表單域將被要求ng-required屬性返回true。

ng-required指令是必要能夠為值之間轉換truefalse 。 在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.