前言:
今天看官们对“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修改时间格式