本文主要是介绍Js 日期处理整理(二)_Js 日期时间戳、字符串、时间差,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一、js Date对象、时间戳之间转换
1.js Date对象转时间戳
var now = new Date();//js Date对象转时间戳
var timeKey = now.getTime(); //1605334977352
console.info(timeKey);
2.js 时间戳 转 Date对象
//js 时间戳 转 Date对象
var timeOne = new Date(1605334977352);
console.info(timeOne); //Sat Nov 14 2020 14:22:57 GMT+0800 (中国标准时间)
二、js Date对象、时间字符串之间转换
1.js 字符串转Date对象
//js 时间字符串 转 时间对象
//中文间隔不支持 例如:2020年10月1日
var timeTwo = new Date('2020-10-1');
console.info(timeTwo.toLocaleString()); //2020/10/1 上午12:00:00var timeThree = new Date('2020-11-1 08:30');
console.info(timeThree.toLocaleString()); //2020/11/1 上午8:30:00var timeFourth=new Date('2020/12/10 10:15');
console.info(timeFourth.toLocaleString()); //2020/12/1
这篇关于Js 日期处理整理(二)_Js 日期时间戳、字符串、时间差的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!