中国标准时间转换成年月日

Posted n-p-c

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了中国标准时间转换成年月日相关的知识,希望对你有一定的参考价值。

var formatDateTime = function (date) {
var y = date.getFullYear();
var m = date.getMonth() + 1;
m = m < 10 ? (‘0‘ + m) : m;
var d = date.getDate();
d = d < 10 ? (‘0‘ + d) : d;
var h = date.getHours();
var minute = date.getMinutes();
minute = minute < 10 ? (‘0‘ + minute) : minute;
return y + ‘-‘ + m + ‘-‘ + d+‘ ‘+h+‘:‘+minute;
};










以上是关于中国标准时间转换成年月日的主要内容,如果未能解决你的问题,请参考以下文章

js怎么把时间转换成年月日时分秒的形式

数据库中如何把毫秒格式的时间转换成年月日格式

date.gettime()返回的整数值怎么转换成年月日时分秒?

秒转换成年月日时分秒 和复制文本到剪贴板

sql server 数据库,在查询sql语句中日期格式转换问题,怎么把原数据年月日时分秒转换成年月日

如何将时间转化成年月日时分秒 js