js获取当前时间并格式化

获取当前时间,格式化为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
			   },

你可能感兴趣的:(前端笔记,javascript,前端,开发语言)