上周在javascript中获取

时间:2012-11-21 12:44:41

标签: javascript

我在脚本中使用以下内容:

var startDate = new Date("10/12/2012");
var endDate = new Date("10/18/2012");

我希望使用startDate作为上周一动态创建这些日期,将endDate作为上周日动态创建。我尝试过以下方法:

var curr = new Date; // get current date
var first = curr.getDate() - curr.getDay(); // First day is the day of the month - the day of the week
var last = first + 6; // last day is the first day + 6
var startDate = new Date(curr.setDate(first)).format("m/dd/yyyy");
var endDate = new Date(curr.setDate(last)).format("m/dd/yyyy");

但由于某种原因,这不起作用 - 没有为startDate或endDate变量输出任何内容。

任何想法我做错了什么?

3 个答案:

答案 0 :(得分:3)

Javascript datetime对象没有格式方法。您需要使用库或自己生成字符串:

var curr = new Date; // get current date
var first = curr.getDate() - curr.getDay(); // First day is the day of the month - the day of the week
var last = first + 6; // last day is the first day + 6
var startDate = new Date(curr.setDate(first));
startDate = "" + (startDate.getMonth() + 1) + "/" + startDate.getDate() + "/" + startDate.getFullYear();
var endDate = new Date(curr.setDate(last));
endDate = "" + (endDate.getMonth() + 1) + "/" + endDate.getDate() + "/" + endDate.getFullYear();

这是一个小提琴http://jsfiddle.net/DPQeB/2/及其输出

  

2012年11月18日
  2012年11月24日

允许您设置日期格式的一个库是jQuery UI

答案 1 :(得分:1)

使用date.js获取上周日

Date.today().moveToDayOfWeek(0, -1); // -1 indicates to go back

最好使用库来操作日期。它会让你的生活更轻松。

话虽如此,其长期目标是了解JavaScript中的日期。它可以帮助您完成调试等工作。

答案 2 :(得分:0)

如果从星期日开始:

var today = new Date();
var sundayOfWeek = new Date(today.getFullYear(), today.getMonth(), today.getDate() - today.getDay()-8);
var mondayOfWeek = new Date(today.getFullYear(), today.getMonth(), today.getDate() - today.getDay()+1);

console.log( mondayOfWeek );
console.log( sundayOfWeek );