javascript打印周末约会

时间:2017-01-25 11:56:02

标签: javascript jquery html

Hello Guys我想用javascript或通过一些具有以下功能的jquery日历插件显示周结束日期

看起来像这样:

周结束:< 以dd / MMM / YYYY格式显示周末日期>

然后如果我们点击这些左右箭头,它应该以相同的格式显示下周末。

如果有一个具有类似功能的插件或者我们可以通过简单的javascript实现这一点,请建议我

3 个答案:

答案 0 :(得分:3)

使用它来获取一周的第一天和最后一天。

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 firstday = new Date(curr.setDate(first)).toUTCString();
var lastday = new Date(curr.setDate(last)).toUTCString();

console.log("Week Start : "+firstday);
console.log("Weekend : "+lastday);

var date = new Date(lastday);
var formattedDate = date.getDate() + '/' + (date.getMonth() + 1) + '/' +  date.getFullYear();
console.log(formattedDate);

您可以使用lastday

手动更改getDay(), getMonth() and getFullYear()格式

答案 1 :(得分:1)

试试这个。

var current = new Date();     // get current date    
var weekstart = current.getDate() - current.getDay() +1;    
var weekend = weekstart + 6;       // end day is the first day + 6 
var monday = new Date(current.setDate(weekstart));  
var sunday = new Date(current.setDate(weekend));

答案 2 :(得分:0)



{{1}}