尝试使用JQuery从当前日期(今天' s日期)获取星期五的当前日期。
如下所示:(这不起作用)
var curr = new Date;
var fridayDate = new Date(curr.setDate(curr.getDate() - curr.getDay()+4));
提前致谢!
答案 0 :(得分:0)
new Date().getDay(); //0=Sun, 1=Mon, ..., 6=Sat
这是如何获得平日。
星期五是5。 所以,试试这个var curr;
curr = new Date();
var fridayDate;
fridayDate = new Date();
var friday;
friday = 5 - curr.getDay();
fridayDate.setDate(fridayDate.getDate()+friday);
console.log(curr);
console.log(fridayDate);