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

时间格式转换器 - 00::00:00

时间:2017-12-16 19:41:56      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:blog   时间格式   class   turn   格式   int   cti   nbsp   fun   

秒数转换成00:00:00格式

function toTwo(num){
       function changInt(num){
          return (num < 10) ? ‘0‘+num : num;
       }
      return changInt(parseInt(num/3600))+":"+changInt(parseInt(num/60))+":"+ changInt(Math.round(num%60));
}

 

时间格式转换器 - 00::00:00

标签:blog   时间格式   class   turn   格式   int   cti   nbsp   fun   

原文地址:http://www.cnblogs.com/sure2016/p/8047225.html

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