js获取当前时间,返回日期yyyy-MM-dd

2021/6/7 18:50:50

本文主要是介绍js获取当前时间,返回日期yyyy-MM-dd,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 1 this.now_year = new Date().getFullYear();
 2 this.now_month = new Date().getMonth() + 1;
 3 this.now_day = new Date().getDate();
 4 
 5 //now_time 当前日期
 6 let now_time ="";
 7 now_time+=this.now_year;
 8             
 9 if(this.now_month<10){
10       now_time+= '-0'+this.now_month;
11       if(this.now_day<10){
12             now_time+= '-0'+this.now_day;
13       }else{
14             now_time+= '-'+this.now_day;
15       }
16 }else{
17       now_time+='-'+ this.now_month;
18       if(this.now_day<10){
19              now_time+= '-0'+this.now_day;
20       }else{
21              now_time+= '-'+this.now_day;
22       }
23 }

 



这篇关于js获取当前时间,返回日期yyyy-MM-dd的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程