我是JavaScript#AngularJS'的新成员。我写作是因为我需要知道如何比较date-time picker
中的数据是否是今天40年后的>
,如果不是,那么我需要查看错误。
答案 0 :(得分:0)
Angular的文档为它提供了一个很好的例子: https://docs.angularjs.org/api/ng/input/input%5Bdate%5D
我已对其进行了编辑以更好地满足您的需求: http://plnkr.co/edit/B8jATONx6yBMwWPAXspc?p=preview
<input type="date" id="exampleInput" name="input" ng-model="example.value"
placeholder="yyyy-MM-dd" min="1976-03-08"/>
{{myForm.input.$error}}
<div role="alert">
<span class="error" ng-show="myForm.input.$error.min">
Smaller than minimum!</span>
</div>
您基本上需要将min
指令添加到输入中。输入有错误后,myForm.input.$error
将包含所有错误的验证器。