怎么比较时间大小,判断是否过期
1 比较年月日 时分秒var timestamp1 = new Date("2019-03-22 10:07:46").getTime();var timestamp2 = new Date().getTime();var d = timestamp1 - timestamp2;//d>0 没到时间 d<0时间已经过了2 比较年月日var timestamp1 ...