网站首页 > 基础教程 正文
示例
传参数年、月,返回包含当月的所有周数、及周的起止日期,支持跨月
特殊情况请自行修改函数
console.log(getWeeksInMonth(2024, 9));
返回如下
源码
源码以elementUI的周选择框的起止日期作为参考
function getWeeksInMonth(year, month) {
// 计算指定年月的第一个月的第一天是星期几
const firstDayOfMonth = new Date(year, month - 1, 1);
const firstDayOfWeek = firstDayOfMonth.getDay(); // 星期天为0, 星期一为1, ..., 星期六为6
// 计算指定年月的最后一天是星期几
const lastDayOfMonth = new Date(year, month, 0);
// 计算第一周的开始日期(可能是上个月的日期)
const firstWeekStartDate = new Date(firstDayOfMonth);
firstWeekStartDate.setDate(firstDayOfMonth.getDate() - (firstDayOfWeek + 6) % 7);
// 初始化周数和日期数组
let weeks = [];
let currentDate = new Date(firstWeekStartDate);
// 循环计算每周的起止日期
while (currentDate <= lastDayOfMonth) {
// 计算本周的结束日期(如果是月底,则可能跨月)
const endOfWeek = new Date(currentDate);
endOfWeek.setDate(currentDate.getDate() + 6);
// 添加周信息到数组
weeks.push({
week: getISOWeek(currentDate),
beginDate: formatDate(currentDate),
endDate: formatDate(endOfWeek)
});
// 更新currentDate为下一周的开始日期
currentDate = new Date(endOfWeek);
currentDate.setDate(endOfWeek.getDate() + 1);
}
return weeks;
}
// 格式化日期为YYYY-MM-DD格式
function formatDate(date) {
const year = date.getFullYear();
const month = (date.getMonth() + 1).toString().padStart(2, '0');
const day = date.getDate().toString().padStart(2, '0');
return `${year}-${month}-${day}`;
}
// 获取ISO周数
function getISOWeek(date) {
const target = new Date(date.valueOf());
const dayNr = (date.getDay() + 6) % 7;
target.setDate(target.getDate() - dayNr + 3);
const firstThursday = target.valueOf();
target.setMonth(0, 1);
if (target.getDay() !== 4) {
target.setMonth(0, 1 + ((4 - target.getDay()) + 7) % 7);
}
const week1 = new Date(target.getFullYear(), 0, 4);
return 1 + Math.ceil((firstThursday - week1) / 604800000);
}
// 示例:获取2024年9月的周数及起止日期
console.log(getWeeksInMonth(2024, 9));
猜你喜欢
- 2024-12-12 JS逆向so easy?以Python方式进行签名算法还原(附案例分享)
- 2024-12-12 知识付费阿里云视频点播功能
- 2024-12-12 超强指南!Golang 并发编程
- 2024-12-12 python办公案例:使用联系人信息,如何制作通讯录VCF文件
- 2024-12-12 Linux C 编程 - 详解floor函数、ceil函数和round函数
- 2024-12-12 借助云开发实现短信验证码的发送,你会了么
- 2024-12-12 游戏系统中的伪随机和真随机算法实现Python3
- 2024-12-12 Python tkinter 点名工具
- 2024-12-12 Ae随机表达式控制小数点位数
- 2024-12-12 Axure教程--页面载入进度条
- 最近发表
- 标签列表
-
- gitpush (61)
- pythonif (68)
- location.href (57)
- tail-f (57)
- pythonifelse (59)
- deletesql (62)
- c++模板 (62)
- css3动画 (57)
- c#event (59)
- linuxgzip (68)
- 字符串连接 (73)
- nginx配置文件详解 (61)
- html标签 (69)
- c++初始化列表 (64)
- exec命令 (59)
- canvasfilltext (58)
- mysqlinnodbmyisam区别 (63)
- arraylistadd (66)
- node教程 (59)
- console.table (62)
- c++time_t (58)
- phpcookie (58)
- mysqldatesub函数 (63)
- window10java环境变量设置 (66)
- c++虚函数和纯虚函数的区别 (66)