码迷,mamicode.com
首页 > Web开发 > 详细

js获取日期周数

时间:2020-01-09 19:02:43      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:class   div   code   mat   begin   math   日期   day   col   

let date = new Date(2020, 1, 9);
let beginDate = new Date(date.getFullYear(), 0, 1);
let week = Math.ceil((parseInt((date - beginDate) / (24 * 60 * 60 * 1000)) + 1 + beginDate.getDay()) / 7);

 

js获取日期周数

标签:class   div   code   mat   begin   math   日期   day   col   

原文地址:https://www.cnblogs.com/idtjie/p/12172788.html

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