• 获取日期操作


    (1)

    value(3):月  startdate:上个月的第一天 enddate:上个月的最后一天

    value(5):年  startdate:去年当前月的第一天 enddate:上个月的最后一天

    function changestartorendtime(value){
    	 computecycle = value;
    	 var myDate = new Date();
    	 var new_year = myDate.getFullYear();    //取当前的年份        
    	 var new_month = myDate.getMonth();        
    	 var new_enddate = new Date(new_year,new_month,1);
    	 enddate = new Date(new_enddate.getTime()-1000*60*60*24).toLocaleDateString().replace(/[/]/g,"-");
    	 var new_yearstartdate = new Date(new_year-1,new_month,1).toLocaleDateString().replace(/[/]/g,"-");
    	 var new_monthstartdate = new Date(new_year,new_month-1,1).toLocaleDateString().replace(/[/]/g,"-");
    	 startdate=(value==5)?new_yearstartdate:new_monthstartdate;
    }
    

     (2)

    生成之前12个月的月份(YYYY-MM)

    function gethistorymonth(){
        var myDate = new Date();
         var new_year = myDate.getFullYear()-1;    
         var new_month = myDate.getMonth()+1; 
         $("div[name=month]").empty();
         for(i = 0;i < 12;i++){
             if(new_month>12){
                 new_year++;
                 new_month=1;
             }
             var datestr = (new_month<10)?new_year+"-0"+new_month:new_year+"-"+new_month;
             new_month++;
             $("div[name=month]").append(datestr+"###");
         }
    }
  • 相关阅读:
    Core Audio 在Vista/Win7上实现
    Windows上的音频采集技术
    采样率和比特率的区别
    各种流媒体服务器性能测试
    ARPU值分析
    doubango介绍
    解析nginx负载均衡
    H.264转码加速:NVENC大战Quick Sync
    autoCAD
    bwa比对软件的使用以及其结果文件(sam)格式说明
  • 原文地址:https://www.cnblogs.com/soup227/p/5941025.html
Copyright © 2020-2023  润新知