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

js时间戳转日期,日期转时间戳,时间戳转天数

时间:2020-05-30 15:35:02      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:class   int()   转换   color   span   tab   add   日期   tar   

时间戳转日期

//parseInt()字符串转数字
//new Date()放入时间戳,没有放默认当前时间
this.tableData[i].createTime = this.formatDate(new Date(parseInt(this.tableData[i].createTime)))

// 时间戳转换日期格式
    formatDate(now) {
      var year = now.getFullYear();  //取得4位数的年份
      var month = now.getMonth() + 1;  //取得日期中的月份,其中0表示1月,11表示12月
      var date = now.getDate();      //返回日期月份中的天数(1到31)
      var hour = now.getHours();     //返回日期中的小时数(0到23)
      var minute = now.getMinutes(); //返回日期中的分钟数(0到59)
      var second = now.getSeconds(); //返回日期中的秒数(0到59)
      return year + "-" + month + "-" + date + " " + hour + ":" + minute + ":" + second;
    }

日期转时间戳转天数

let day=(Date.parse(val)-Date.parse(this.addForm.checkCycleStart))/(1*24*60*60*1000);

 

js时间戳转日期,日期转时间戳,时间戳转天数

标签:class   int()   转换   color   span   tab   add   日期   tar   

原文地址:https://www.cnblogs.com/yyh28/p/12992654.html

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