js 處理日期加減
開始時間設置為6點整,若當前時間小於6:00:00,則使用T-1,否則使用T
結束時間設置為T+1的6點整
Date.prototype.format = function(fmt){
var o = {
"M+" : this.getMonth()+1, //月份
"d+" : this.getDate(), //日
"h+" : this.getHours(), //小時
"m+" : this.getMinutes(), //分
"s+" : this.getSeconds(), //秒
"q+" : Math.floor((this.getMonth()+3)/3), //季度
"S" : this.getMilliseconds() //毫秒
};
if(/(y+)/.test(fmt)){
fmt=fmt.replace(RegExp.$1, (this.getFullYear()+"").substr(4 - RegExp.$1.length));
}
for(var k in o){
if(new RegExp("("+ k +")").test(fmt)){
fmt = fmt.replace(
RegExp.$1, (RegExp.$1.length==1) ? (o[k]) : (("00"+ o[k]).substr((""+ o[k]).length)));
}
}
return fmt;
}
//
var currentDateTime = new Date('2021-12-07 01:00:00'); // 一般傳入毫秒時間戳進行初始化
// var nowStr = now.format("yyyy-MM-dd hh:mm:ss");
h = currentDateTime.getHours();
// 根據當前時間區別處理
var beginTime = currentDateTime;
// T+1 6點
var endTime = currentDateTime;
console.log(h);
console.log('默認大於6');
if(h < 6){
beginTime.setDate(beginTime.getDate() - 1);
console.log('小於6---修改T-1:');
// + beginTime.format("yyyy-MM-dd hh:mm:ss")
}
beginTime.setHours(6);
beginTime.setMinutes(0);
beginTime.setSeconds(0);
beginTime = beginTime.format("yyyy-MM-dd hh:mm:ss");
console.log('beginTime:' + beginTime);
endTime.setDate(endTime.getDate() + 1);
endTime.setHours(6);
endTime.setMinutes(0);
endTime.setSeconds(0);
endTime = endTime.format("yyyy-MM-dd hh:mm:ss");
console.log('endTime123:' + endTime);
