首页 > Web开发 > 详细

js快速获取当前时间并且返回想要的格式

时间:2021-05-15 18:56:44      阅读:9      评论:0      收藏:0      [点我收藏+]
function backCurrentTime (type) {
    let currentTime=new Date( new Date() + 8 * 3600 * 1000 ).toJSON().substr(0,19).replace("T"," ");
    if(type==‘y‘){
        return currentTime.substr(0,4)
    }else if(type==‘m‘){
        return currentTime.substr(5,2)
    }else if(type==‘d‘){
        return currentTime.substr(8,2)
    }else if(type==‘y-m‘){
        return currentTime.substr(0,7)
    }else if(type==‘y-m-d‘){
        return currentTime.substr(0,10)
    }else if(type==‘y-m-d-h-m‘){
        return currentTime.substr(0,16)
    }else{
        return currentTime
    }
}
console.log(‘当前年‘,backCurrentTime(‘y‘) )
console.log(‘当前月‘,backCurrentTime(‘m‘) )
console.log(‘当前天‘,backCurrentTime(‘d‘) )
console.log(‘当前年-月-天‘,backCurrentTime(‘y-m-d‘) )
console.log(‘当前年-月-天-时-分‘,backCurrentTime(‘y-m-d-h-m‘) )
主要是利用toJSON转格林威治时间 在+8小时得到就是北京时间
参考地址:https://www.cnblogs.com/youwei716/p/14088544.html

技术分享图片

js快速获取当前时间并且返回想要的格式

原文:https://www.cnblogs.com/IwishIcould/p/14771277.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!