美文网首页
js获取当前天00:00:00时间戳和23:59:59的时间戳

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

作者: 冰凉ming | 来源:发表于2019-12-06 19:19 被阅读0次

    获取00:00:00时间戳和23:59:59的时间戳

     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的时间戳

          本文链接:https://www.haomeiwen.com/subject/amnegctx.html