function getPreviousDate(date){ var currentDate = Date.parse(date); currentDate = currentDate - 1000 * 60 * 60 * 24; var tmpDate = new Date(); tmpDate.setTime(currentDate); return convertDateStr(tmpDate); }
认证高级PHP讲师
格式化日期
设置tmpDate时间对象为传入的data时间字符串时间的前一天。后面这个convertDateStr(),看意思是转化为时间字符串?
格式化日期
设置tmpDate时间对象为传入的data时间字符串时间的前一天。
后面这个convertDateStr(),看意思是转化为时间字符串?