欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

js转换时间戳-转换成 yyyy-MM-dd HH:mm:ss

程序员文章站 2024-02-01 20:45:58
比如:转换成 yyyy-MM-dd HH:mm:ss ......

比如:转换成 yyyy-mm-dd hh:mm:ss

//时间戳转换方法    date:时间戳数字
function formatdate(date) {
  var date = new date(date);
  var yy = date.getfullyear() + '-';
  var mm = (date.getmonth() + 1 < 10 ? '0' + (date.getmonth() + 1) : date.getmonth() + 1) + '-';
  var dd = (date.getdate() < 10 ? '0' + (date.getdate()) : date.getdate());
  var hh = (date.gethours() < 10 ? '0' + date.gethours() : date.gethours()) + ':';
  var mm = (date.getminutes() < 10 ? '0' + date.getminutes() : date.getminutes()) + ':';
  var ss = (date.getseconds() < 10 ? '0' + date.getseconds() : date.getseconds());
  return yy + mm + dd +" "+hh + mm + ss;
}