赞
踩
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+"天后"; } },
调用:
console.log(this.getDayName("2023-11-25 1:35:23")); //用法举例:后天
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。