gpt4 book ai didi

javascript - 使用日期范围选择器时的日期和时间不正确

转载 作者:行者123 更新时间:2023-12-02 15:06:54 24 4
gpt4 key购买 nike

我正在使用插件Date Range Picker plugin具有一些预定义的范围。问题是“过去 30 分钟”未显示正确的日期范围。

我的期望:

假设现在是 2016 年 1 月 28 日 17:00 pm,当我选择最后 30 分钟时,我希望它显示 2016 年 1 月 28 日 16:30 pm - 2016 年 1 月 28 日下午 17:00

我得到了什么

2016年1月28日中午12:00 - 2016年1月28日下午11:59

预定义模板的其余部分似乎可以工作。这是a fiddle供你玩。

最佳答案

您需要像这样启用 timePicker 功能:

$(function() {
function cb(start, end) {
$('#reportrange span').html(start.format('MMMM D, YYYY h:mm a') + ' - ' + end.format('MMMM D, YYYY h:mm a'));
}
cb(moment().subtract(29, 'days'), moment());
$('#reportrange').daterangepicker({
timePicker: true, /*Add this line*/
ranges: {
'Last 30 minutes': [moment().subtract(30, 'minutes'), moment()],
'Today': [moment(), moment()],
'Yesterday': [moment().subtract(1, 'days'), moment().subtract(1, 'days')],
'Last 7 Days': [moment().subtract(6, 'days'), moment()],
'Last 30 Days': [moment().subtract(29, 'days'), moment()],
'This Month': [moment().startOf('month'), moment().endOf('month')],
'Last Month': [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').endOf('month')]
}
}, cb);
});

关于javascript - 使用日期范围选择器时的日期和时间不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35062301/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com