如何将 Angular 日期范围选择器中的日期设置为该月的第一天
How to set the date in the Angular Date Range Picker to the 1st day of the month
我正在为日期范围选择器使用这个 Angular 指令
https://github.com/g00fy-/angular-datepicker
目前是将默认日期设置为当前日期
如何将第一个日期范围设置为每月的第一天。如何设置日期?
<div date-range start="a" end="b"> </div>
{{(a|date)||"pick start"}} {{(b|date)||"pick end"}}
你可以使用
var date = new Date();
$scope.a = new Date(date.getFullYear(), date.getMonth(), 1);
$scope.b = new Date(date.getFullYear(), date.getMonth() + 1, 0);
我正在为日期范围选择器使用这个 Angular 指令
https://github.com/g00fy-/angular-datepicker
目前是将默认日期设置为当前日期
如何将第一个日期范围设置为每月的第一天。如何设置日期?
<div date-range start="a" end="b"> </div>
{{(a|date)||"pick start"}} {{(b|date)||"pick end"}}
你可以使用
var date = new Date();
$scope.a = new Date(date.getFullYear(), date.getMonth(), 1);
$scope.b = new Date(date.getFullYear(), date.getMonth() + 1, 0);