js 标准时间转为非标准时间
2021-03-09 09:28
标签:mon 标准 ons href nbsp datetime new logs bsp Thu May 12 2016 08:00:00 GMT+0800 (中国标准时间)标准时间转==>非标准时间 let date = new Date() 参考文档 https://www.cnblogs.com/gudi/p/8031219.html js 标准时间转为非标准时间 标签:mon 标准 ons href nbsp datetime new logs bsp 原文地址:https://www.cnblogs.com/duhui/p/12864509.html
let d = new Date(date);
let datetime=d.getFullYear() + ‘-‘ + (d.getMonth() + 1) + ‘-‘ + d.getDate() + ‘ ‘ + d.getHours() + ‘:‘ + d.getMinutes() + ‘:‘ + d.getSeconds();
console.log(‘非标准时间‘,datetime)
上一篇:从零开始搭建一个动态网站
下一篇:CSS揭秘之《边框图像》