js时间戳转日期,日期转时间戳,时间戳转天数
2021-02-14 17:18
标签:class int() 转换 color span tab add 日期 tar js时间戳转日期,日期转时间戳,时间戳转天数 标签:class int() 转换 color span tab add 日期 tar 原文地址:https://www.cnblogs.com/yyh28/p/12992654.html时间戳转日期
//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);
上一篇:HTML标签
文章标题:js时间戳转日期,日期转时间戳,时间戳转天数
文章链接:http://soscw.com/index.php/essay/55271.html