js 输出当前日期时间 yyyy-MM-dd HH:mm:ss 格式
Posted esrevinud
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 输出当前日期时间 yyyy-MM-dd HH:mm:ss 格式相关的知识,希望对你有一定的参考价值。
/**
* 生成yyyy-MM-dd HH:mm:ss 时间字符串
*/
function getDatetime() {
let now = new Date;
let year = now.getFullYear();
let mounth = toDubleDigit(now.getMonth() + 1);
let day = toDubleDigit(now.getDate());
let hours = toDubleDigit(now.getHours());
let minutes = toDubleDigit(now.getMinutes());
let seconds = toDubleDigit(now.getSeconds());
return year + "-" + mounth + "-" + day + " " + hours + ":" + minutes + ":" + seconds;
}
/**
* 补齐两位数
*/
function toDubleDigit(digit) {
return digit <= 9 ? ‘0‘ + digit : digit;
}
getDatetime();
以上是关于js 输出当前日期时间 yyyy-MM-dd HH:mm:ss 格式的主要内容,如果未能解决你的问题,请参考以下文章
js获取当前日期时间“yyyy-MM-dd HH:MM:SS”
js获取当前日期时间“yyyy-MM-dd HH:MM:SS”
js获取当前日期时间“yyyy-MM-dd HH:MM:SS”
获取当前的日期时间的js函数,格式为“yyyy-MM-dd hh:mm:ss”