如何从(新的Date())返回7天的日期.zeroTime()?

时间:2012-05-24 12:30:31

标签: javascript date

我正在使用(new Date())。zeroTime()来获取当前日期,我怎样才能获得7天前的日期。例如,如果今天是2012年5月24日,我怎么能得到2012年5月17日

1 个答案:

答案 0 :(得分:5)

在C#中,您可以使用DateTime.AddDays并使用-7作为参数。

了解更多here

在JavaScript中:

myDate.setDate(myDate.getDate() - 7);