码迷,mamicode.com
首页 > 其他好文 > 详细

获取时间,时间的正常展示

时间:2020-06-08 12:43:32      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:time   gettime   eth   col   second   seconds   date()   style   div   

 /*获取时间*/
    getTime: function() {
      var _this = this;
      let yy = new Date().getFullYear();
      let mm = new Date().getMonth() + 1;
      let dd = new Date().getDate();
      let hh = new Date().getHours();
      let mf =
        new Date().getMinutes() < 10
          ? "0" + new Date().getMinutes()
          : new Date().getMinutes();
      let ss =
        new Date().getSeconds() < 10
          ? "0" + new Date().getSeconds()
          : new Date().getSeconds();
      _this.gettime = yy + "-" + mm + "-" + dd + " " + hh + ":" + mf + ":" + ss;
    },

 

获取时间,时间的正常展示

标签:time   gettime   eth   col   second   seconds   date()   style   div   

原文地址:https://www.cnblogs.com/web-shu/p/13064630.html

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