码迷,mamicode.com
首页 > Web开发 > 详细

js获取当前天00:00:00时间戳和23:59:59的时间戳

时间:2019-11-04 15:53:56      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:font   date   时间戳   local   gettime   height   margin   bsp   art   

 const start = new Date(new Date().toLocaleDateString()).getTime();
 console.log(start);

const end = new Date(new Date().toLocaleDateString()).getTime() + 24 * 60 * 60 * 1000 - 1;
console.log(end); 
 
new Date() ; 将时间戳转换成日期格式         
getTime();将日期转换成时间戳
 

//Mon Dec 04 2017 00:00:00 GMT+0800 (中国标准时间)

//Mon Dec 04 2017 23:59:59 GMT+0800 (中国标准时间)

js获取当前天00:00:00时间戳和23:59:59的时间戳

标签:font   date   时间戳   local   gettime   height   margin   bsp   art   

原文地址:https://www.cnblogs.com/Dylan-c/p/11792096.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!