年与日时分秒各种格式 补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位的方法的主要内容,如果未能解决你的问题,请参考以下文章