javascript 时间格式输出FormatDate函数

2018-07-20    来源:open-open

容器云强势上线!快速搭建集群,上万Linux镜像随意使用

javascript没有提供像fmt标签一样对日期时间型内容格式输入的函数:

下面是我下的时间输出函数,使用时直接放到标签内,调用。代码如下

Date.prototype.Format = function(fmt) { //author: meizz     
    if (this == "Invalid Date") {  
        return "";  
    }  
    var o = {  
        "M+" : this.getMonth() + 1, //月份     
        "d+" : this.getDate(), //日     
        "H+" : this.getHours(), //小时     
        "m+" : this.getMinutes(), //分     
        "s+" : this.getSeconds(), //秒     
        "q+" : Math.floor((this.getMonth() + 3) / 3), //季度     
        "S" : this.getMilliseconds()  
    //毫秒     
    };  
    if (/(y+)/.test(fmt))  
        fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "")  
                .substr(4 - RegExp.$1.length));  
    for ( var k in o)  
        if (new RegExp("(" + k + ")").test(fmt))  
            fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k])  
                    : (("00" + o[k]).substr(("" + o[k]).length)));  
    return fmt;  
}  
使用时直接用
new Date( 时间变量 ).Format("yyyy-MM-dd HH:mm:ss")  


标签: 代码

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:PHP采集腾讯微博只留文字部分

下一篇:用HtppClient下载一个网页的完整代码