zoukankan      html  css  js  c++  java
  • js 时间格式化

    开发的过程中经常会碰到时间格式化的事,针对那些时间戳,2015-05-05,2015/05/05等都能很好的转换成你想要的格式

    function FormatDate(strDate, strFormat)
    {
      if (!strDate) return;
      if (!strFormat) format = "yyyy-MM-dd";
      switch (typeof strDate)
      {
        case "string":
          strDate = new Date(strDate.replace(/-/g, "/"));
        break;
        case "number":
          strDate = new Date(strDate);
        break;
      }
      if (!strDate instanceof Date) return;
      var dict = {
        "yyyy": strDate.getFullYear(),
        "M": strDate.getMonth() + 1,
        "d": strDate.getDate(),
        "H": strDate.getHours(),
        "m": strDate.getMinutes(),
        "s": strDate.getSeconds(),
        "MM": ("" + (strDate.getMonth() + 101)).substr(1),
        "dd": ("" + (strDate.getDate() + 100)).substr(1),
        "HH": ("" + (strDate.getHours() + 100)).substr(1),
        "mm": ("" + (strDate.getMinutes() + 100)).substr(1),
        "ss": ("" + (strDate.getSeconds() + 100)).substr(1)
      };
      return strFormat.replace(/(yyyy|MM?|dd?|HH?|ss?|mm?)/g, function ()
      {
        return dict[arguments[0]];
      });
    }

    FormatDate(strDate, "yyyy-MM-dd HH:mm:ss")

  • 相关阅读:
    smarty中ifelse、foreach以及获取数组中键值名的一个实例
    smarty逻辑运算符
    python strip()函数 介绍
    (转)论python工厂函数与内建函数
    数据结构哈希表(转)
    哈希表算法的编写
    哈希表(转)
    平衡二叉树的旋转操作
    并查集详解(转)
    Java数组技巧攻略
  • 原文地址:https://www.cnblogs.com/ghelement/p/4511373.html
Copyright © 2011-2022 走看看