最新的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.