js 获取系统当前时间

Posted Marydon

tags:

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

js获取系统当前时间

CreateTime--2018年2月7日11:04:16

Author:Marydon

/**
 * 获取系统当前时间并格式化
 * @returns yyyy-MM-dd HH:mm:ss
 */
function getCurrentFormatDate() {
    // 系统当前时间格式化
    var currentFormatDate = "";
    // 获取系统当前日期
    var date = new Date();
    // 获取当前年
    var currentYear = date.getFullYear();
    // 获取当前月
    var currentMonth = date.getMonth() + 1;
    // 获取当前日
    var currentDay = date.getDate();
    //
    var currentHours = date.getHours();
    //
    var currentMinutes = date.getMinutes();
    //
    var currentSeconds = date.getSeconds();
    
    // 格式化
    if (currentMonth >= 1 && currentMonth <= 9) {
        currentMonth = "0" + currentMonth;
    }
    
    if (currentDay >= 0 && currentDay <= 9) {
        currentDay = "0" + currentDay;
    }

    currentFormatDate = currentYear + "-" + currentMonth + "-" + currentDay + " " + currentHours + ":" + currentMinutes
            + ":" + currentSeconds;
    return currentFormatDate;
}

 

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

js常用代码片段(更新中)

没有使用 navController.currentDestination?.id 获取当前片段 ID

web代码片段

js 获取系统当前时间

Java获取时间戳精确到年月日时

js获取当前系统时间