停止从今天开始浏览过去的日期angularjs

时间:2017-11-07 08:46:03

标签: angularjs

future-only:我想在比现在更早的日期设置力验证错误

但它不起作用请建议谢谢

<input
                      type="text"
                      datetime-picker
                      date-format="dd-MM-yyyy hh:mm a"
                      future-only
                      name="flightarrivaltime"
                      ng-model="users.flightarrivaltime"
                      required>

angular.module('Options', ['angularjs-datetime-picker'])
  .controller('Options', ['$rootScope', '$scope',  function ($rootScope, $scope) {

  }]);

也可以允许用户设置月份

1 个答案:

答案 0 :(得分:0)

依旧会显示所有过去的日期 https://github.com/kineticsocial/angularjs-datetime-picker 但如果选择较早的日期,表格将无效

以下是您的问题的解决方案: https://github.com/720kb/angular-datepicker

JS

$scope.MinDate = new Date(); 
$scope.Date = null;

HTML

<datepicker><input ng-model="date" date-min-limit="MinDate" type="text"/></datepicker>