码迷,mamicode.com
首页 > Web开发 > 详细

js 格式化时间

时间:2020-07-01 12:19:18      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:alt   seconds   code   date()   ima   info   class   img   return   

技术图片

 

 写一个过滤器

技术图片

 

 

getTime(item) {
      const date = new Date(
     //这一步是根据我后端返回的时间格式处理的,可选用  item.replace(
/\-/g, "/").substring(0, item.indexOf(".")) ); const Y = date.getFullYear() + "-"; const M = (date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1) + "-"; const D = (date.getDate() < 10 ? "0" + date.getDate() : date.getDate()) + " "; const h = (date.getHours() < 10 ? "0" + date.getHours() : date.getHours()) + ":"; const m = (date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes()) + ":"; const s = date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds(); return Y + M + D + h + m + s; }

拿走不谢,我是金陵彭于晏我们下期再见!!!

js 格式化时间

标签:alt   seconds   code   date()   ima   info   class   img   return   

原文地址:https://www.cnblogs.com/lq2333/p/13218399.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!