给定一个像这样的简单 html 表单:
<form name="myForm" action="#sent" method="post" ng-app>
<input name="userPreference1" type="text" ng-model="shipment.userPreference" />
<input name="userPreference1" type="text" ng-model="shipment.userPreference" />
<input name="userPreference1" type="text" ng-model="shipment.userPreference" />
... submit input and all the other code...
</form>
如果至少有一个输入为空,我需要您的帮助来了解如何检查验证时间。所需的验证如下。用户必须完成至少一项首选项。
使用 jQuery 这个:
if ( $("input").val() == "" ) {
工作正常,但想弄清楚如何使用 angular 来做同样的事情。
提前非常感谢,
吉列尔莫