龙空技术网

js时间补位,时间格式的修改

北漂佳佳的生活 64

前言:

今天看官们对“js修改时间格式”大致比较珍视,我们都想要分析一些“js修改时间格式”的相关内容。那么小编也在网摘上收集了一些对于“js修改时间格式””的相关资讯,希望我们能喜欢,小伙伴们快快来学习一下吧!

var nowTime=this.nullObj.date;// 获取到的时间,是下图的格式,想要2020-07-01 这种格式的           this.nullObj.date=nowTime.toLocaleDateString().replace(/\//g, "-");            let month=this.nullObj.date.match(/-(\S*)-/)[1];           let day=this.nullObj.date.substr(-2);           if(month<10){               month='0'+month;           }           if(day.indexOf("-")  == 0){               day='0'+day.replace("-","");           }           this.nullObj.date=this.nullObj.date.substr(0,4)+'-'+month+'-'+day;

标签: #js修改时间格式