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

今天为一年中的第几周

时间:2016-11-22 07:33:52      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:整数   color   class   时间   turn   当前时间   math   code   mon   

//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);

 

今天为一年中的第几周

标签:整数   color   class   时间   turn   当前时间   math   code   mon   

原文地址:http://www.cnblogs.com/BeautyFuture/p/6087706.html

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