欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

js时间,时间戳

程序员文章站 2022-04-14 08:54:09
js时间,时间戳 在项目中,时间是一个很重要的参数。 1、获取当前时间 let nowtime = new date(); 2、获取当前时间戳 let nowtimestamp = new date...
js时间,时间戳

在项目中,时间是一个很重要的参数。

1、获取当前时间

let nowtime = new date();

2、获取当前时间戳

let nowtimestamp = new date().gettime();

3、将时间戳转换为标准时间格式

let time = new date(timestamp);

//例如:

let time = new date(1534468472332);

console.log(time);

4、封装方法解析时间格式

export function now_times(){

let date = new date();

let y = date.getfullyear();

let m = (date.getmonth()+1 < 10 '0'+(date.getmonth()+1) : date.getmonth()+1);

let d = date.getdate()<10 '0'+date.getdate() : date.getdate();

let h = date.gethours()<10 '0'+date.gethours() : date.gethours();

let m = date.getminutes()<10 '0'+date.getminutes() : date.getminutes();

let s = date.getseconds()<10 '0'+date.getseconds() : date.getseconds();

return (y + '/' + m + '/' + d + ' ' + h + ':' + m + ':' + s);

}