我的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
答案 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();