标签: javascript date
我正在使用(new Date())。zeroTime()来获取当前日期,我怎样才能获得7天前的日期。例如,如果今天是2012年5月24日,我怎么能得到2012年5月17日
答案 0 :(得分:5)
在C#中,您可以使用DateTime.AddDays并使用-7作为参数。
DateTime.AddDays
-7
了解更多here
在JavaScript中:
myDate.setDate(myDate.getDate() - 7);