zoukankan      html  css  js  c++  java
  • 两个日期之间的所有日期

    define的方式暴露了Util的公共方法

    begin直接获取开始时间 end直接获取结束时间 目前是把所有的日期放在了数组内,

    Util.dataDecline = function(begin,end){

    var result = [];

    Date.prototype.format = function() {  

          var s = '';  

          var mouth = (this.getMonth() + 1)>=10?(this.getMonth() + 1):('0'+(this.getMonth() + 1));  

          var day = this.getDate()>=10?this.getDate():('0'+this.getDate());  

          s += this.getFullYear() + '-'; // 获取年份。  

          s += mouth + "-"; // 获取月份。  

          s += day; // 获取日。  

          return (s); // 返回日期。  

      };  

      function getAll(begin, end) {  

          var ab = begin.split("-");  

          var ae = end.split("-");  

          var db = new Date();  

          db.setUTCFullYear(ab[0], ab[1] - 1, ab[2]);  

          var de = new Date();  

          de.setUTCFullYear(ae[0], ae[1] - 1, ae[2]);  

          var unixDb = db.getTime();  

          var unixDe = de.getTime(); 

          for (var k = unixDb; k <= unixDe;) {  

              result.push((new Date(parseInt(k))).format());

              k = k + 24 * 60 * 60 * 1000;  

          }

      }  

      getAll(begin, end);

      return result

    };

  • 相关阅读:
    java.nio.channels.ClosedChannelException
    JAVA面试题以及基本hadoop
    one
    在远程桌面集群中——配置Python的环境变量
    双系统——在win10系统保存和查看Ubuntu系统中的文件——Linux Reader
    MySQL——安装
    Python--简单读写csv文件
    Python--画图时希腊字母的显示
    IDL——关系运算符Eq Ne Le Lt Gt Ge
    python——利用scipy.stats import pearsonr计算皮尔逊相关系数
  • 原文地址:https://www.cnblogs.com/wuconghui/p/9213611.html
Copyright © 2011-2022 走看看