js实现日期年月日加减,自动处理闰年

时间:2025-03-31 07:59:58

这里写自定义目录标题

  • 使用js实现日期加减

使用js实现日期加减

使用js实现日期年月日的加减,自动处理闰年:

function setDateTest() {
	addOrReduceDate("D","2019-6-15 14:45:16","5");
}
// type:年、月或者日
// data:日期
// 加减量
function addOrReduceDate(type,date,num) {
	var nowDate = null;
	var strDate = "";
	num = parseInt(num); // 防止传入字符串报错
	var seperator1 = "-";
	var seperator2 = ":";
	if(date == "") {
		nowDate = new Date();
	} else {
		nowDate = new Date(date);
	}
	
	if(type==="Y"){
		(() + num);
	}
	if(type==="M"){
		(() + num);
	}
	if(type==="D"){
		(() + num);
	}
	if(type==="A"){
		(() + num);
		(() + num);
		(() + num);
	}
	var year = (); // 年
	var month = () + 1; // 月
	strDate = (); //日
	var hours = (); // 时
	var minutes = (); // 分
	var seconds = (); // 秒
	if(month >= 1 && month <= 9) {
		month = "0" + month;
	}
	if(strDate >= 0 && strDate <= 9) {
		strDate = "0" + strDate;
	}
	if(seconds >= 0 && seconds <= 9) {
		seconds = "0" + seconds;
	}
	var dateStr = year + seperator1 + month + seperator1 + strDate + " " + hours + seperator2 + minutes + seperator2 + seconds;
	(dateStr)
	return dateStr;
}