zoukankan      html  css  js  c++  java
  • js 计算月/周的第一天和最后一天

    因为项目开发中遇到需要向后台传本周的开始和结束时间,以及上一周的起止时间,就琢磨了半天,总算写出来一套,写篇文章是为了方便自己记忆,也是分享给需要的人,水平有限,写的不好请见谅:

    • getDateStr3函数是为了把时间对象转变为yy-mm-dd的字符串,方便传值;

    • getWeekStartAndEnd函数是获取周的起止时间,并且用getDateStr3转换成字符串放到数组中,其中参数0代表当前周,-1代表前一周,-2代表上上周,以此类推,反过来也可以1代表下一周;

    • getMonthStartAndEnd函数是获取月的起止时间,传参同上

    //获取当前日期yy-mm-dd
    //date 为时间对象
    function getDateStr3(date) {
        var year = "";
        var month = "";
        var day = "";
        var now = date;
        year = ""+now.getFullYear();
        if((now.getMonth()+1)<10){
            month = "0"+(now.getMonth()+1);
        }else{
            month = ""+(now.getMonth()+1);
        }
        if((now.getDate())<10){
            day = "0"+(now.getDate());
        }else{
            day = ""+(now.getDate());
        }
        return year+"-"+month+"-"+day;
    }
    /**  
    * 获得相对当前周AddWeekCount个周的起止日期  
    * AddWeekCount为0代表当前周   为-1代表上一个周   为1代表下一个周以此类推
    * **/  
    function getWeekStartAndEnd(AddWeekCount) {  
        //起止日期数组    
        var startStop = new Array();  
        //一天的毫秒数    
        var millisecond = 1000 * 60 * 60 * 24;  
        //获取当前时间    
        var currentDate = new Date();
        //相对于当前日期AddWeekCount个周的日期
        currentDate = new Date(currentDate.getTime() + (millisecond * 7*AddWeekCount));
        //返回date是一周中的某一天
        var week = currentDate.getDay();  
        //返回date是一个月中的某一天    
        var month = currentDate.getDate(); 
        //减去的天数    
        var minusDay = week != 0 ? week - 1 : 6;  
        //获得当前周的第一天    
        var currentWeekFirstDay = new Date(currentDate.getTime() - (millisecond * minusDay));  
        //获得当前周的最后一天
         var currentWeekLastDay = new Date(currentWeekFirstDay.getTime() + (millisecond * 6));
        //添加至数组    
        startStop.push(getDateStr3(currentWeekFirstDay));  
        startStop.push(getDateStr3(currentWeekLastDay));  
      
        return startStop;  
    }  
    /**  
    * 获得相对当月AddMonthCount个月的起止日期  
    * AddMonthCount为0 代表当月 为-1代表上一个月  为1代表下一个月 以此类推
    * ***/  
    function getMonthStartAndEnd(AddMonthCount) {  
        //起止日期数组    
        var startStop = new Array();  
        //获取当前时间    
        var currentDate = new Date(); 
        var month=currentDate.getMonth()+AddMonthCount;
        if(month<0){
            var n = parseInt((-month)/12); 
            month += n*12;
            currentDate.setFullYear(currentDate.getFullYear()-n);
        }
        currentDate = new Date(currentDate.setMonth(month));
        //获得当前月份0-11    
        var currentMonth = currentDate.getMonth();  
        //获得当前年份4位年    
        var currentYear = currentDate.getFullYear();  
        //获得上一个月的第一天    
        var currentMonthFirstDay = new Date(currentYear, currentMonth,1);  
        //获得上一月的最后一天    
        var currentMonthLastDay = new Date(currentYear, currentMonth+1, 0);  
        //添加至数组    
        startStop.push(getDateStr3(currentMonthFirstDay));  
        startStop.push(getDateStr3(currentMonthLastDay));  
        //返回    
        return startStop;  
    }
    
     
  • 相关阅读:
    appium在Mac上环境搭建
    判断元素的16中方法expected_conditions
    python3条件表达式和字符串
    webdriver的API
    什么是web接口
    python2函数
    python1变量,表达式和语句
    XPath学习
    接口相关概念
    解决jdk1.7,1.8共存问题小思
  • 原文地址:https://www.cnblogs.com/wanglei7175/p/6347623.html
Copyright © 2011-2022 走看看