时间格式转换记录

1、将指定时间转化为时间戳格式。

例如:将’2020-10-13 09:48:45’  格式或者’2020-10-13T09:48:45’,转化为 1602553725000  毫秒格式

代码:

  Date.parse(new Date(’2020-10-13 09:48:45’)) 

  或者 

 new Date(’2020-10-13 09:48:45’).getTime()

 

2、将指定时间转化为年月日时分秒格式。

将new Date() 或者时间控件选择出来的 Mon Dec 14 2020 00:00:00 GMT+0800 (China Standard Time)  转为  ‘20201214000000’

’2020-10-13 09:48:45’   转为  ‘20201013094845’

代码:

dateFormatter(new Date(’2020-10-13 09:48:45’)) //将’2020-10-13 09:48:45’格式 转为 ’20201013094845’ 格式。

dateFormatter(new Date()) //将当前时间 转为 ’20201013094845’ 格式。


function dateFormatter(date) {

  return (

    date.getFullYear().toString() +

    twoDigits(date.getMonth() + 1) +

    twoDigits(date.getDate()) +

    twoDigits(date.getHours()) +

    twoDigits(date.getMinutes()) +

    twoDigits(date.getSeconds())

  );

}

function twoDigits(n) {

  return n < 10 ? "0" + n : n;

}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值