时间戳转日期格式yyyy-MM-dd HH:mm
程序员文章站
2022-04-03 22:28:04
...
时间戳转日期格式yyyy-MM-dd HH:mm
把获取到的时间戳转换为yyyy-MM-dd hh:mm格式
time(time)
function time(time = +new Date()) {
var date = new Date(time + 8 * 3600 * 1000); // 增加8小时
var month = date.getMonth() + 1;
var strDate = date.getDate();
if (month >= 1 && month <= 9) {
month = "0" + month;
}
if (strDate >= 0 && strDate <= 9) {
strDate = "0" + strDate;
}
var currentdate = date.getFullYear() + "-" + month + "-" + strDate
+ " " + date.getHours() + ":" + date.getMinutes();
return currentdate;
}
上一篇: spirngmvc 中时间格式转换
推荐阅读
-
js时间戳转yyyy-MM-dd HH-mm-ss工具类详解
-
js实现把时间戳转换为yyyy-MM-dd hh:mm 格式(es6语法)
-
日期时间比较大小(yyyy-MM-dd或者yyyy-MM-dd HH:mm:ss格式比较大小)、获取一年内所有周六日时间和当天之后的周六日时间
-
格式化日期 返回yyyy-mm-dd hh:mm:ss的形式
-
【日期时间处理】获取当前日期时间戳、日期格式字符串转时间戳、日期时间格式字符串转时间戳
-
年月日时间格式转时间戳 ,解决ios系统不兼容 JS 中 = new Date(yyyy-mm-dd)方法
-
Moment.js+Vue过滤器的使用,各种时间格式转换为YYYY-MM-DD HH:mm:ss格式
-
时间戳转日期格式
-
将10位或13位时间戳转换为日期+时间--yyyy-MM-dd HH:mm:ss
-
js时间戳转yyyy-MM-dd HH-mm-ss工具类详解