daterangepicker时间范围选择

//时间范围选择
var date = new Date();
date.setDate(date.getDate()-1);
var weekbefore=new Date();
weekbefore.setDate(weekbefore.getDate()-8);
$('#kt_daterangepicker_2').daterangepicker(
{
locale: {
format: "YYYY-MM-DD", //设置显示格式
applyLabel: '确定', //确定按钮文本
cancelLabel: '取消', //取消按钮文本
autoUpdateInput:false,
daysOfWeek: ['日', '一', '二', '三', '四', '五', '六'],
monthNames: ['一月', '二月', '三月', '四月', '五月', '六月',
'七月', '八月', '九月', '十月', '十一月', '十二月'
]
},
startDate: weekbefore,
endDate: date,
},
function(start, end, label) {
$('#kt_daterangepicker_2 .form-control').val( start.format('YYYY-MM-DD') + ' / ' + end.format('YYYY-MM-DD'));
// alert("A new date range was chosen: " + start.format('YYYY-MM-DD') + ' to ' + end.format('YYYY-MM-DD'));
});
posted @ 2020-09-07 22:07  85541585  阅读(940)  评论(0编辑  收藏  举报