我想将日期转换为时间戳
我有两种不同格式的日期Wed May 31 2017 15:33:47 GMT+0530 (India Standard Time)
和2017-05-31T10:03:47.592Z
。我想要
将其转换为1379426880000
等时间戳。
这是我的代码。
var noOfDays = 5;
var targetDate = new Date();
targetDate.setDate(targetDate.getDate() - noOfDays);
console.log("targetDate date is " + targetDate); //Wed May 31 2017 15:33:47 GMT+0530 (India Standard Time)
console.log(JSON.stringify(targetDate)); // "2017-05-31T10:03:47.592Z"
答案 0 :(得分:2)
使用此代码获取时间戳。
targetDate.getTime()