今天为一年中的第几周

Posted 小乔流水人家

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了今天为一年中的第几周相关的知识,希望对你有一定的参考价值。

//JS
var today = new Date();//获取当前时间
            var y = today.getFullYear();
           var m = today.getMonth()+1;
           var d = today.getDate();
           
             var getYearWeek = function (a, b, c) {
                var date1 = new Date(a, parseInt(b) - 1, c), date2 = new Date(a, 0, 1),
                d = Math.round((date1.valueOf() - date2.valueOf()) / (3600 * 24 * 1000)),weekday = date2.getDay();//四舍五入整数
                return Math.ceil( (d + weekday) / 7 );//上舍入 天数
             };
               var w = getYearWeek(y,m,d);
                            console.log(w);

 

以上是关于今天为一年中的第几周的主要内容,如果未能解决你的问题,请参考以下文章

求关于js根据日期判断此日期是在一年中的第几周

Excel 2010 得到当天的日期/得到一年中的第几周/得到当前一周中的星期几

oracle用存储过程实现对输入的日期判断是属于一年中的第几周,如20120101~20120107是

如何根据另一个日期列创建“周列”?

JAVA给一个时间获取一年的第几周,正常自然周是 星期一至星期日为一周,

mysql给定一年中的第几周,输出这一周的日期