使用 datetime-picker AngularJs 计算所选日期和当前日期之间的天数
Calculate the number of days between selected date and current date using datetime-picker AngularJs
我在 angularjs
中使用 bootstrap datetime-picker
我像这样使用日期选择器的选项 dateDisabled 禁用了几天
$scope.dateOptions = {
dateFormat: 'yyyy-MM-dd',
maxDate: new Date(2020, 5, 22),
minDate: new Date(),
startingDay: 1,
onChangeDate: countDays,
dateDisabled: function (data) {
var date = new Date(data.date)
date.setHours(0, 0, 0, 0)
var date2 = new Date('2019-02-08')
date2.setHours(0, 0, 0, 0)
return (date == date2.toString());
}
};
现在需要根据日期选择器计算 selected 日期和当前日期之间的天数,即禁用日期不应计入天数计算。
如果我select将日期设置为 2019 年 2 月 10 日,那么计算的天数为
4(使用当前日期 - 2019 年 2 月 5 日)。
但它是 5
当我select日期选择器
时调用函数
function countDays(dateTime) {
var fourDaysLater = new Date();
fourDaysLater.setDate(dateTime.getDate() - 4);
}
如何计算日期选择器中启用的日期?
回答您的问题
How to count dates which are enabled in the date picker?
您已经使用日期选择器禁用了日期,但是当您计算两个日期之间的天数时,您使用的是新的 date(),它无法访问您的日期选择器的日期。
你可以这样做 -
function countDays(dateTime) {
// Current date
var currentDate = new Date().setHours(0, 0, 0, 0);
// Selected date
var selectedDate = new Date(dateTime).setHours(0, 0, 0, 0);
// Count working days between selected date and current date
while (currentDate < selectedDate) {
if (currentDate != new Date('2019-02-08').setHours(0, 0, 0, 0)) {
++workingDays;
}
currentDate.setDate(currentDate.getDate() + 1);
}
}
alert(workingDays); // Number of working days
计算两天之间的天数并排除
我在 angularjs
中使用 bootstrap datetime-picker我像这样使用日期选择器的选项 dateDisabled 禁用了几天
$scope.dateOptions = {
dateFormat: 'yyyy-MM-dd',
maxDate: new Date(2020, 5, 22),
minDate: new Date(),
startingDay: 1,
onChangeDate: countDays,
dateDisabled: function (data) {
var date = new Date(data.date)
date.setHours(0, 0, 0, 0)
var date2 = new Date('2019-02-08')
date2.setHours(0, 0, 0, 0)
return (date == date2.toString());
}
};
现在需要根据日期选择器计算 selected 日期和当前日期之间的天数,即禁用日期不应计入天数计算。
如果我select将日期设置为 2019 年 2 月 10 日,那么计算的天数为 4(使用当前日期 - 2019 年 2 月 5 日)。
但它是 5
当我select日期选择器
时调用函数 function countDays(dateTime) {
var fourDaysLater = new Date();
fourDaysLater.setDate(dateTime.getDate() - 4);
}
如何计算日期选择器中启用的日期?
回答您的问题
How to count dates which are enabled in the date picker?
您已经使用日期选择器禁用了日期,但是当您计算两个日期之间的天数时,您使用的是新的 date(),它无法访问您的日期选择器的日期。
你可以这样做 -
function countDays(dateTime) {
// Current date
var currentDate = new Date().setHours(0, 0, 0, 0);
// Selected date
var selectedDate = new Date(dateTime).setHours(0, 0, 0, 0);
// Count working days between selected date and current date
while (currentDate < selectedDate) {
if (currentDate != new Date('2019-02-08').setHours(0, 0, 0, 0)) {
++workingDays;
}
currentDate.setDate(currentDate.getDate() + 1);
}
}
alert(workingDays); // Number of working days
计算两天之间的天数并排除