我在脚本中使用以下内容:
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 变量没有输出任何内容。
任何想法我做错了什么?