js获取昨日、今日、本周、本月

		  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 day = new Date();
			day.setDate(day.getDate() - 1);
			console.log("昨天:"+day.format("yyyy-MM-dd"));
			
			//今天
			var day = new Date();
			console.log("今天:"+day.format("yyyy-MM-dd"));
		
			//明天
			var day = new Date();
			day.setDate(day.getDate() + 1);
			console.log("明天:"+day.format("yyyy-MM-dd"));
			
			//今天星期几
			var day = new Date();
			console.log(day.getDay() == 0 ? '星期日' : "星期"+day.getDay());
			
			//本周星期日是几号
			var day = new Date();
			var num = day.getDay();
			day.setDate(day.getDate() + 7-num); //如果把周日看作第一天,那就改成0,如果把星期日看作本周最后一天,则改为7
			console.log("本周星期日是"+day.format("yyyy-MM-dd"));
			
			//本周星期六是几号
			var day = new Date();
			var num = day.getDay();
			day.setDate(day.getDate() + 6-num);
			console.log("本周星期六是"+day.format("yyyy-MM-dd"));
			
			//本月第一天
			var day = new Date();
			day.setDate(1);
			console.log("本月第一天"+day.format("yyyy-MM-dd"));
			
			//本月最后一天
			var day = new Date();
			day.setDate(1);
			day.setMonth(day.getMonth()+1);//这时候day已经变成下个月第一天
			day.setDate(day.getDate() - 1);//下个月的第一天的前一天就是本月最后一天
			console.log("本月最后一天"+day.format("yyyy-MM-dd"));

你可能感兴趣的:(JavaScript)