js 输出当前日期时间 yyyy-MM-dd HH:mm:ss 格式
2021-02-09 11:16
标签:补齐 UNC 输出 git 字符 date() mount 格式 日期时间 js 输出当前日期时间 yyyy-MM-dd HH:mm:ss 格式 标签:补齐 UNC 输出 git 字符 date() mount 格式 日期时间 原文地址:https://www.cnblogs.com/esrevinud/p/13060876.html/**
* 生成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
文章标题:js 输出当前日期时间 yyyy-MM-dd HH:mm:ss 格式
文章链接:http://soscw.com/index.php/essay/53070.html