js 获取当前日期所在周的周一

function week(date,n) {
var checkDate = StringToDate(date);
checkDate.setDate(checkDate.getDate() + n - (checkDate.getDay() || ));
return checkDate;
}

date:日期

n:想要返回周几,例如:周一:1,周二:2,周三:3

返回值:返回一个日期

下面的方法是返回当前日期所在周的周一对应的日期

function getMon(date) {
var checkDate = StringToDate(date);
checkDate.setDate(checkDate.getDate() + 1 - (checkDate.getDay() || 7));
return checkDate;
}
上一篇:sql中计算某天是全年的第几周及取得某天的所在周的周一的日期的函数


下一篇:java通过传入的日期,获取所在周的周一至周日