码迷,mamicode.com
首页 > 其他好文 > 详细

时间戳与对象之间的转化

时间:2021-03-08 13:35:09      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:change   实例化   直接   OLE   转化   注意   time   对象   允许   

changeOrigin: true,//是否允许跨越

 

    // 获取某个时间格式的时间戳

    var stringTime = "2014-07-10 10:21:12";

    var timestamp2 = Date.parse(new Date(stringTime));

    timestamp2 = timestamp2 / 1000;

console.log(timestamp2)

 

var newDay = new Date();

console.log(Date.parse(newDay));

 

var newDay = +new Date();

console.log(newDay);

var newDate = new Date(1611309731000);  //实例化一个Date对象,将时间戳直接传入,注意一定是13

var time_str = newDate.toLocaleDateString(); //毫秒转化为时间

console.log(time_str)

时间戳与对象之间的转化

标签:change   实例化   直接   OLE   转化   注意   time   对象   允许   

原文地址:https://www.cnblogs.com/zjxzhj/p/14493492.html

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