zoukankan      html  css  js  c++  java
  • js时间对象格式化 format(转载)

    1. /** 
    2.  * 时间对象的格式化 
    3.  */  
    4. Date.prototype.format = function(format){  
    5.     /* 
    6.      * format="yyyy-MM-dd hh:mm:ss"; 
    7.      */  
    8.     var o = {  
    9.         "M+": this.getMonth() + 1,  
    10.         "d+": this.getDate(),  
    11.         "h+": this.getHours(),  
    12.         "m+": this.getMinutes(),  
    13.         "s+": this.getSeconds(),  
    14.         "q+": Math.floor((this.getMonth() + 3) / 3),  
    15.         "S": this.getMilliseconds()  
    16.     }  
    17.       
    18.     if (/(y+)/.test(format)) {  
    19.         format = format.replace(RegExp.$1, (this.getFullYear() + "").substr(4 -  
    20.         RegExp.$1.length));  
    21.     }  
    22.       
    23.     for (var k in o) {  
    24.         if (new RegExp("(" + k + ")").test(format)) {  
    25.             format = format.replace(RegExp.$1, RegExp.$1.length == 1 ? o[k] : ("00" + o[k]).substr(("" + o[k]).length));  
    26.         }  
    27.     }  
    28.     return format;  
    29. }  
  • 相关阅读:
    LeetCode刷题--只出现一次的数
    Java进阶--多线程
    .NETCore :正则表达式
    .net core多线程:Thread
    .NETCore : Linq简介
    .NET Core:List,ArrayList和Dictionary
    .NET Core 装箱与拆箱
    .NET Core 泛型、逆变与协变
    .NET Core 类的生命周期
    .NET Core 类的多态与继承
  • 原文地址:https://www.cnblogs.com/1wen/p/4246784.html
Copyright © 2011-2022 走看看