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

js获取当天00:00:00到23:59:59的时间并格式化

程序员文章站 2022-06-26 10:03:40
js获取当天00:00:00到23:59:59的时间并格式化。 //获取格林时间var date1 = new date(new date(new date().tolocaledatestring...

js获取当天00:00:00到23:59:59的时间并格式化。

//获取格林时间var date1 = new date(new date(new date().tolocaledatestring()).gettime());

var date2 = new date(new date(new date().tolocaledatestring()).gettime()+24*60*60*1000-1);

//格式化时间 2018-06-06 00:00:00//如果只是简单的格式化只变成2018-6-6 0:0:0,需要运用三目运算判断并在适当的地方加上0,完成所需要的格式。

var starttime = date1.getfullyear() + "-" + ((date1.getmonth() + 1) < 10 "0" + (date1.getmonth() + 1):(date1.getmonth() + 1))+ "-" + (date1.getdate() < 10 "0" + date1.getdate():date1.getdate()) + " " + (date1.gethours()<10"0"+date1.gethours():date1.gethours()) + ":" + (date1.getminutes()<10"0"+date1.getminutes():date1.getminutes()) + ":" + (date1.getseconds()<10"0"+date1.getseconds():date1.getseconds()),

//格式化时间 2018-06-06 23:59:59

var endtime = date2.getfullyear() + '-' + (date2.getmonth() + 1) + '-' + date2.getdate() + ' ' + date2.gethours() + ':' + date2.getminutes() + ':' + date2.getseconds()