当前位置:   article > 正文

【时间】 js 根据已知的时间,判断是否是 前天,昨天,今天,明天,后天_js判断今天明天后天

js判断今天明天后天
getDayName(d){
		
			d = d.replace(/-/g,'/')

		   var td=new Date();
		   td=new Date(td.getFullYear(),td.getMonth(),td.getDate());
		   var od=new Date(d);
		   od=new Date(od.getFullYear(),od.getMonth(),od.getDate());
		   var xc=(od-td)/1000/60/60/24;
		   if(xc<-2){
		      return -xc+"天前";
		   }else if(xc<-1){
		      return "前天";
		   }else if(xc<0){
		      return "昨天";
		   }else if(xc==0){
		      return "今天";
		   }else if(xc<2){
		      return "明天";
		   }else if(xc<3){
		      return "后天";
		   }else{
		      return xc+"天后";
		   }
		},
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25

调用:

console.log(this.getDayName("2023-11-25 1:35:23")); //用法举例:后天
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/313647
推荐阅读
相关标签
  

闽ICP备14008679号