JS获取当前时间

Posted 巫师的蜕变

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS获取当前时间相关的知识,希望对你有一定的参考价值。

Date.prototype.Format = function (fmt) { //author:jacun
    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;
}

var yyyy-MM = new Date(CREATE_TIME.getTime()).Format("yyyy-MM");

var yyyy-MM-dd= new Date(CREATE_TIME.getTime()).Format("yyyy-MM-dd");

















以上是关于JS获取当前时间的主要内容,如果未能解决你的问题,请参考以下文章

js获取当前当前年月日时分秒,以及获取年月日(无时分秒),详情见补充!

JS如何获取当前时间7天或者15天后的时间

js获取当前时间以及未来一星期(或者可以规定天数)的时间

js获取当前当前年月日时分秒,以及获取年月日(无时分秒),详情见补充!

js获取当前时间和一星期前的时间

JS获得当前时间