请任何人分享代码以在 JavaScript 中从当前日期查找前一周的第一个日期。例如,如果当前日期是 2012 年 12 月 19 日,我应该得到 2012 年 12 月 10 日和最后日期 2012 年 12 月 16 日作为结果。
问问题
929 次
1 回答
1
function getPreviousSunday()
{
var today=new Date();
return new Date().setDate(today.getDate()-today.getDay()-7);
}
function getPreviousMonday()
{
var today=new Date();
if(today.getDay() != 0)
return new Date().setDate(today.getDate()-7-6);
else
return new Date().setDate(today.getDate()-today.getDay()-6);
}
于 2012-12-19T12:09:50.450 回答