使用 javascript 计算日期范围

发布于 2024-10-14 12:51:44 字数 354 浏览 3 评论 0原文

我使用日期/时间选择器来选择日期和时间:

var d = new Date();

$('#timePicker').datetimepicker({
    dateFormat: 'dd-mm-yyyy',
    timeFormat: 'hh:mm',
    separator: '@',
    minDate: new Date(),
    maxDate: new Date(),
});

minDate 和 maxDate 定义日期范围。不应选择过去的日期,因此当前日期是下限。

上限最多应为未来 2 个月。那么当当前月份是 11 时我该如何处理呢?关于计算日期范围的函数有什么想法吗?

I use a date/time picker to select date and time:

var d = new Date();

$('#timePicker').datetimepicker({
    dateFormat: 'dd-mm-yyyy',
    timeFormat: 'hh:mm',
    separator: '@',
    minDate: new Date(),
    maxDate: new Date(),
});

minDate and maxDate define the date range. No dates in the past should be selected, so the current date is the lower bound.

The upper bound should be max 2 month in the future. So how do I handle that when current month is 11? Any ideas on a function that calculates date range?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尾戒 2024-10-21 12:51:44
var d = new Date(); // initially contains current date
var e = new Date(); // initially contains current date
                    // note: both dates must initially contain same value
e.setMonth(d.getMonth() + 2);
console.log(d);    
console.log(e);

如有必要,请将 console.log 替换为 alert。如果您想知道的话,这适用于 11 月和 12 月的日期。

var d = new Date(); // initially contains current date
var e = new Date(); // initially contains current date
                    // note: both dates must initially contain same value
e.setMonth(d.getMonth() + 2);
console.log(d);    
console.log(e);

Replace console.log with alert if necessary. This will work for dates in November and December in case you're wondering.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文