标签: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