AngularJS日期验证不仅仅是第一次使用

时间:2015-04-06 03:04:17

标签: angularjs angularjs-directive

我正在使用输入类型“date”标记,我希望它验证日期,例如4月不能有31天等等。但是,此验证在我第一次设置“31-04-2014”时不起作用,如果我再次转到日期字段并将日期更改为其他内容并返回到无效日期,则会抛出错误。

<input type="date" class="form-control" ng-model="someModel" name="abc" ng-required="de.compulsory" />

<span class="errortxt" ng-show="form.eventDataEntryForm.abc.$error.date"> ERROR</span>

1 个答案:

答案 0 :(得分:1)

您可以使用https://angular-ui.github.io/bootstrap/#/datepicker中的Datepicker来解决此问题。