js获取当前时间并格式化

  • Post author:
  • Post category:其他


获取当前时间,格式化为2022-12-28 11:17:05

getCurrentTime() {
				//格式:yyyy-MM-dd  HH:mm:ss
			       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;
			     return _this.gettime
			   },



版权声明:本文为qq_43840793原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。