年与日时分秒各种格式 补0位的方法

Posted yn-cn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了年与日时分秒各种格式 补0位的方法相关的知识,希望对你有一定的参考价值。

 let startTime=new Date(this.seachObj.times[0])
 startTime=startTime.getFullYear() + ‘‘ + this.p(startTime.getMonth() + 1) + ‘‘ + this.p(startTime.getDate())+ ‘ ‘+this.p(startTime.getHours()) + ‘:‘ + this.p(startTime.getMinutes()) + ‘:‘ + this.p(startTime.getSeconds())
 let endTime=new Date(this.seachObj.times[1])
 endTime=endTime.getFullYear() + ‘‘ + this.p(endTime.getMonth() + 1) + ‘‘ + this.p(endTime.getDate())+ ‘ ‘+this.p(endTime.getHours()) + ‘:‘ + this.p(endTime.getMinutes()) + ‘:‘ + this.p(endTime.getSeconds())
 
 
补0方法
p (s) {
return s < 10 ? ‘0‘ + s : s;
},

以上是关于年与日时分秒各种格式 补0位的方法的主要内容,如果未能解决你的问题,请参考以下文章

js时间处理,返回各种格式

有啥好方法把秒数转换成时分秒的格式

13位时间戳转年月日时分秒

年月日时分秒的英文字母表示格式

excel中如何将年月日和时分秒分开

针对两种不同的日期格式进行转成年月日时分秒的格式