javascript中的时间格式化的方法

 

javascript中的时间格式化的方法

 

复制代码
 Date.prototype.format = function(format) { 
    var o = {
        "M+": this.getMonth() + 1, //month  
        "d+": this.getDate(), //day   
        "h+": this.getHours(), //hour      
        "m+": this.getMinutes(), //minute    
        "s+": this.getSeconds(), //second      
        "q+": Math.floor((this.getMonth() + 3) / 3), //quarter      
        "S": this.getMilliseconds() //millisecond   
    }
    if (/(y+)/.test(format)) {
        format = format.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
    }
    for (var k in o) {
        if (new RegExp("(" + k + ")").test(format)) {
            format = format.replace(RegExp.$1, RegExp.$1.length == 1 ? o[k] : ("00" + o[k]).substr(("" + o[k]).length));
        }
    }
    return format;
} 
复制代码

 

使用方法 :

 

   var testDate = new Date(); 
 var testStr = testDate.format("yyyy年MM月dd日 第q季度 hh小时mm分ss秒S毫秒"); 
 alert(testStr);

 

posted @   牛腩  阅读(23)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
点击右上角即可分享
微信分享提示