js 标准时间转为非标准时间
Posted 塞巴斯酱
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 标准时间转为非标准时间相关的知识,希望对你有一定的参考价值。
Thu May 12 2016 08:00:00 GMT+0800 (中国标准时间)标准时间转==>非标准时间
let date = new Date()
let d = new Date(date);
let datetime=d.getFullYear() + \'-\' + (d.getMonth() + 1) + \'-\' + d.getDate() + \' \' + d.getHours() + \':\' + d.getMinutes() + \':\' + d.getSeconds();
console.log(\'非标准时间\',datetime)
参考文档
以上是关于js 标准时间转为非标准时间的主要内容,如果未能解决你的问题,请参考以下文章