使用Number()方法 将Date对象转换成时间戳
var newDay = new Date();
console.log(Number(newDay));
使用日期对象Date.parse()方法
var newDay = new Date();
console.log(Date.parse(newDay));
使用Number()方法 将Date对象转换成时间戳
var newDay = new Date();
console.log(Number(newDay));
使用日期对象Date.parse()方法
var newDay = new Date();
console.log(Date.parse(newDay));
本文标题:js 将Date 日期对象与时间戳互相转换
本文链接:https://www.haomeiwen.com/subject/oslwrftx.html
网友评论