当前位置:   article > 正文

vue js 判断时间日期是否为今天昨天明天_js 判断是不是今天

js 判断是不是今天
				date可以为任何日期
				if (new Date(date).getDate() === new Date().getDate()) {
					      this.time_str = "今天";
				} else if (new Date(date).getDate() === (new Date().getDate() - 1)) {
						 this.time_str = "昨天";
				} else if (new Date(date).getDate() === (new Date().getDate() + 1)) {
						 this.time_str = "明天";
				} else if (new Date(date).getDate() < new Date().getDate()) {
						 this.time_str = "过去";
				}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/313652
推荐阅读
相关标签
  

闽ICP备14008679号