码迷,mamicode.com
首页 > 其他好文 > 详细

日历格式的数据

时间:2017-09-21 20:53:54      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:get   cas   break   etc   concat   []   mon   date   turn   

const getDaysInMonth = (month, year) => { // 得到不同月份的天数
switch (month) {
default:
break;
case 4:
case 6:
case 9:
case 11:
return 30;
case 2:
return (((((year % 4) === 0) && ((year % 100) !== 0)) || ((year % 400) === 0)) ? 29 : 28);
}
return 31;
};

const getCalendar = (month, year) => { // 得到每月日历里的日期数组
const days = getDaysInMonth(month + 1, year);
const firstDays = new Date(year, month, 1);
const startPos = firstDays.getDay();
const daylist = new Array(startPos).fill(null)
.concat(new Array(days).fill(null).map((__, i) => new Date(year, month, i + 1)));
const c = [];
while (daylist.length) {
c.push(daylist.splice(0, 7));
}
return c;
};

日历格式的数据

标签:get   cas   break   etc   concat   []   mon   date   turn   

原文地址:http://www.cnblogs.com/weimo10235/p/7570148.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!