当前位置:   article > 正文

js获取当前年月日时分秒_js获取当前时间年月日时分秒

js获取当前时间年月日时分秒
  1. //方法一
  2. let time = new Date();
  3. // 获取年
  4. time.getFullYear()'年'
  5. // 获取月
  6. time.getMonth()'月'
  7. // 获取日
  8. time.getDate()'日'
  9. // 获取时
  10. time.getHours()
  11. // 获取分
  12. time.getMinutes()
  13. // 获取秒
  14. time.getSeconds()
  1. let time = new Date();
  2. let timeInfo =
  3. (time.getFullYear()+'年'+time.getMonth()+'月'+time.getDate()+'日'+time.getHours()+':'+time.getMinutes()+':'+time.getSeconds())
  4. console.log(timeInfo);
  1. function getDateYYYYMMddHHMMSS(format ){
  2. const date = new Date();
  3. const month = (date.getMonth() + 1).toString().padStart(2, '0');
  4. const strDate = date.getDate().toString().padStart(2, '0');
  5. const starHours = date.getHours().toString().padStart(2, '0');
  6. const starMinutes = date.getMinutes().toString().padStart(2, '0');
  7. const starSeconds = date.getSeconds().toString().padStart(2, '0');
  8. format = `${date.getFullYear()}-${month}-${strDate}
  9. ${starHours}:${starMinutes}:${starSeconds}`;
  10. return format
  11. }

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

闽ICP备14008679号