当前位置:   article > 正文

微信小程序获取当前时间戳、获取当前时间、时间戳加减_微信小程序consloe打印时间

微信小程序consloe打印时间
  1. //获取当前时间戳
  2. var timestamp = Date.parse(new Date());
  3. timestamp = timestamp / 1000;
  4. console.log("当前时间戳为:" + timestamp);
  5. //获取当前时间
  6. var n = timestamp * 1000;
  7. var date = new Date(n);
  8. //年
  9. var Y = date.getFullYear();
  10. //月
  11. var M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1);
  12. //日
  13. var D = date.getDate() < 10 ? '0' + date.getDate() : date.getDate();
  14. //时
  15. var h = date.getHours();
  16. //分
  17. var m = date.getMinutes();
  18. //秒
  19. var s = date.getSeconds();
  20. console.log("当前时间:" +Y+M+D+h+":"+m+":"+s);
  21. //转换为时间格式字符串
  22. console.log(date.toDateString());
  23. console.log(date.toGMTString());
  24. console.log(date.toISOString());
  25. console.log(date.toJSON());
  26. console.log(date.toLocaleDateString());
  27. console.log(date.toLocaleString());
  28. console.log(date.toLocaleTimeString());
  29. console.log(date.toString());
  30. console.log(date.toTimeString());
  31. console.log(date.toUTCString());
  32. //时间、时间戳加减 以加一天举例
  33. //加一天的时间戳:
  34. var tomorrow_timetamp = timestamp + 24 * 60 * 60;
  35. //加一天的时间:
  36. var n_to = tomorrow_timetamp * 1000;
  37. var tomorrow_date = new Date(n_to);
  38. //加一天后的年份
  39. var Y_tomorrow = tomorrow_date.getFullYear();
  40. //加一天后的月份
  41. var M_tomorrow = (tomorrow_date.getMonth() + 1 < 10 ? '0' + (tomorrow_date.getMonth() + 1) : tomorrow_date.getMonth() + 1);
  42. //加一天后的日期
  43. var D_tomorrow = tomorrow_date.getDate() < 10 ? '0' + tomorrow_date.getDate() : tomorrow_date.getDate();
  44. //加一天后的时刻
  45. var h_tomorrow = tomorrow_date.getHours();
  46. //加一天后的分钟
  47. var m_tomorrow = tomorrow_date.getMinutes();
  48. //加一天后的秒数
  49. var s_tomorrow = tomorrow_date.getSeconds();

 
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/651027
推荐阅读
相关标签
  

闽ICP备14008679号