码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2018-06-30 18:52:11      阅读:665      评论:0      收藏:0      [点我收藏+]

标签:date   格式   rtti   IV   return   turn   span   nbsp   size   

 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位的方法

标签:date   格式   rtti   IV   return   turn   span   nbsp   size   

原文地址:https://www.cnblogs.com/yn-cn/p/9248081.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!