使用moment.js在daterange选取器中禁用将来的日期

时间:2017-08-23 04:34:12

标签: javascript angularjs momentjs

我的HTML文件中有一个日期范围选择器

<input date-range-picker class="form-control date-picker" type="text" 
ng-model="datePicker.date" options="onApplyDateRange"/>

我想知道是否有可能使用moment.js验证它。我一直在尝试验证它,但我无法让它工作。请帮忙

我使用了https://www.npmjs.com/package/angular-daterangepicker https://github.com/fragaria/angular-daterangepicker

1 个答案:

答案 0 :(得分:1)

你可以尝试在html中使用max并从控制器中获取maxdate

<input date-range-picker class="form-control date-picker" type="text" ng-model="datePicker.date" max="maxdate" options="onApplyDateRange"/>

<强>控制器

$scope.maxdate = new Date();