实现js时间戳与日期格式之间的互转

1. 将时间戳转换成日期格式

 //获取一个时间对象
var date = new Date(时间戳);

 //下面是获取时间日期的方法,需要什么样的格式自己拼接起来就好了
date.getFullYear();  // 获取完整的年份(4位,1970)
date.getMonth();  // 获取月份(0-11,0代表1月,用的时候记得加上1)
date.getDate();  // 获取日(1-31)
date.getTime();  // 获取时间(从1970.1.1开始的毫秒数)
date.getHours();  // 获取小时数(0-23)
date.getMinutes();  // 获取分钟数(0-59)
date.getSeconds();  // 获取秒数(0-59)

//例子,时间格式 yyyy-MM-dd hh:mm:ss
var date = new Date();
Year = date.getFullYear() + '-';
Month = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + '-';
Day = date.getDate() + ' ';
hour = date.getHours() + ':';
minute = date.getMinutes() + ':';
second = date.getSeconds(); 
console.log(Year + Month + Day + hour + minute + second );

2. 将日期格式转换成时间戳

var strtime = '2020-05-25 10:03:29:123';
var date = new Date(strtime); //传入一个时间格式,如果不传入就是获取现在的时间了,这样做不兼容火狐。
// 可以这样做
var date = new Date(strtime.replace(/-/g, '/'));

// 有三种方式获取,在后面会讲到三种方式的区别
time1 = date.getTime();
time2 = date.valueOf();
time3 = Date.parse(date);
// 三种获取的区别:第一、第二种:会精确到毫秒;第三种:只能精确到秒,毫秒将用0来代替

3. Date()参数形式有7种

new Date("month dd,yyyy hh:mm:ss");
new Date("month dd,yyyy");
new Date("yyyy/MM/dd hh:mm:ss");
new Date("yyyy/MM/dd");
new Date(yyyy,mth,dd,hh,mm,ss);
new Date(yyyy,mth,dd);
new Date(ms);

比如:
new Date("May 25,2020 10:08:33");
new Date("May 25,2020");
new Date("2020/05/25 10:07:33");
new Date("2020/05/25");
new Date(2020,5,25,10,06,33); // 月份从0~11
new Date(2020,5,25);
new Date(1574006780);
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值