年 - 月 - 日 小时 : 分钟 : 秒 (例:2021-01-01 00:00:00 ) 的时间转换格式

getDate()	以数值返回天(1-31)
getDay()	以数值获取周名(0-6)
getFullYear()	获取四位的年(yyyy)
getHours()	获取小时(0-23)
getMilliseconds()	获取毫秒(0-999)
getMinutes()	获取分(0-59)
getMonth()	获取月(0-11)
getSeconds()	获取秒(0-59)
getTime()	获取时间(从 1970 年 1 月 1 日至今)

格式化日期 格式为:年 - 月 - 日 小时 :分钟 :秒 (2021-01-01 00:00:00)

 const queryGetDateFunc = (day) => {
     
            let date = new Date(day);
            let Y = date.getFullYear();
            let M = date.getMonth() + 1 > 9 ? date.getMonth() + 1 : '0' + (date.getMonth() + 1);
            let D = date.getDate() > 9 ? date.getDate() : '0' + date.getDate();
            let h = date.getHours() > 9 ? date.getHours() : '0' + date.getHours();
            let m = date.getMinutes() > 9 ? date.getMinutes() : '0' + date.getMinutes();
            let s = date.getSeconds() > 9 ? date.getSeconds() : '0' + date.getSeconds();
            let Time = Y + '-' + M + '-' + D + ' ' + h + ':' + m + ':' + s;
            console.log('格式化后的时间', Time);
            return Time;
        };
        // 获取当前时间
        let nowDate = new Date();
        console.log('当前的时间', nowDate); //当前的时间 Sun Mar 07 2021 14:47:36 GMT+0800 (中国标准时间)
        // 格式化时间
        queryGetDateFunc(nowDate); // 格式化后的时间 2021-02-014 14:47:36

你可能感兴趣的:(JavaScript,js,前端)