• JS格式化日期字符串


     1//格式化日期
     2Date.prototype.format = function(format)
     3{
     4    var o =
     5    {
     6        "M+" : this.getMonth()+1//month
     7        "d+" : this.getDate(),    //day
     8        "h+" : this.getHours(),   //hour
     9        "m+" : this.getMinutes(), //minute
    10        "s+" : this.getSeconds(), //second
    11        "q+" : Math.floor((this.getMonth()+3)/3),  //quarter
    12        "S" : this.getMilliseconds() //millisecond
    13    }

    14    if(/(y+)/.test(format))
    15    format=format.replace(RegExp.$1,(this.getFullYear()+"").substr(4 - RegExp.$1.length));
    16    for(var k in o)
    17    if(new RegExp("("+ k +")").test(format))
    18    format = format.replace(RegExp.$1,RegExp.$1.length==1 ? o[k] : ("00"+ o[k]).substr((""+ o[k]).length));
    19    return format;
    20}

    21
  • 相关阅读:
    springcloud配置中心
    burnside+polya 整理
    线段树-小总结
    D. Artsem and Saunders
    444 D. Ratings and Reality Shows
    P1337 [JSOI2004]平衡点 / 吊打XXX
    Typora + Open Live Writer 管理博客园
    旋转卡壳
    B. Alyona and a tree
    set的用法
  • 原文地址:https://www.cnblogs.com/pw/p/1085768.html
Copyright © 2020-2023  润新知