时间转时间戳
将Thu Sep 20 2021 11:32:59 GMT+0800 (中国标准时间)转换为1622518379000
console.log(Date.parse(new Date()))
console.log(new Date().getTime())
将"2021-06-01 11:32:59"转换为1622518379000
var timeDate = "2021-06-01 11:32:59";
var Time = new Date(timeDate);
var timestemp = Time.getTime();
console.log(timestemp)
网友评论