加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 资源网站 > 资源 > 正文

微信小程序获取系统时间、时间戳、时间时间戳加减

发布时间:2020-12-14 19:46:29 所属栏目:资源 来源:网络整理
导读:微信小程序获取系统时间、时间戳、时间时间戳加减,微信小程序获取明天时间 //获取当前时间戳??????var?timestamp?=?Date.parse(new?Date());??????timestamp?=?timestamp?/?1000;??????console.log("当前时间戳为:"?+?timestamp);????//获取当前时间??????v

微信小程序获取系统时间、时间戳、时间时间戳加减,微信小程序获取明天时间

//获取当前时间戳??
????var?timestamp?=?Date.parse(new?Date());??
????timestamp?=?timestamp?/?1000;??
????console.log("当前时间戳为:"?+?timestamp);??
??
//获取当前时间??
????var?n?=?timestamp?*?1000;??
????var?date?=?new?Date(n);??
????//年??
????var?Y?=?date.getFullYear();??
????//月??
????var?M?=?(date.getMonth()?+?1?//时间、时间戳加减?以加一天举例,聪明的你肯定触类旁通??
????//加一天的时间戳:??
????var?tomorrow_timetamp?=?timestamp?+?24??60??60;??
????//加一天的时间:??
????var?n_to?=?tomorrow_timetamp?*?1000;??
????var?tomorrow_date?=?new?Date(n_to);??
????//加一天后的年份??
????var?Y_tomorrow?=?tomorrow_date.getFullYear();??
????//加一天后的月份??
????var?M_tomorrow?=?(tomorrow_date.getMonth()?+?1?<?10???'0'?+?(tomorrow_date.getMonth()?+?1)?:?tomorrow_date.getMonth()?+?1);??
????//加一天后的日期??
????var?D_tomorrow?=?tomorrow_date.getDate()?<?10???'0'?+?tomorrow_date.getDate()?:?tomorrow_date.getDate();??
????//加一天后的时刻??
????var?h_tomorrow?=?tomorrow_date.getHours();??
????//加一天后的分钟??
????var?m_tomorrow?=?tomorrow_date.getMinutes();??
????//加一天后的秒数??
????var?s_tomorrow?=?tomorrow_date.getSeconds();


(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读