怎样将秒数转换成 小时:分钟的格式

Posted web-record

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎样将秒数转换成 小时:分钟的格式相关的知识,希望对你有一定的参考价值。

<script>
   /**  

   * @param  second  

   * @return   

   * @desc 秒转化成dd hh:mm:ss  

   */ 

   function dateFormat(second)  

      var dd,hh,mm,ss;  

      second = typeof second === ‘string‘ ? parseInt(second) : second;  

      if(!second || second < 0)  

          return;  

        

      //

      dd = second / (24 * 3600) | 0;  

      second = Math.round(second) - dd * 24 * 3600;  

      //小时  

      hh = second / 3600 | 0;  

      second = Math.round(second) - hh * 3600;  

      //

      mm = second / 60 | 0;  

      //

      ss = Math.round(second) - mm * 60;  

      if(Math.round(dd) < 10)  

          dd = dd > 0 ? ‘0‘ + dd : ‘‘;  

        

      if(Math.round(hh) < 10)  

          hh = ‘0‘ + hh;  

        

      if(Math.round(mm) < 10)  

          mm = ‘0‘ + mm;  

        

      if(Math.round(ss) < 10)  

          ss = ‘0‘ + ss;  

        

      alert( dd + ‘ ‘ + hh + ‘:‘ + mm + ‘:‘ + ss);  

  


</script>

 

以上是关于怎样将秒数转换成 小时:分钟的格式的主要内容,如果未能解决你的问题,请参考以下文章

将秒转换为天、小时、分钟、秒格式 (C++)

PHP 将秒数转换为小时,分钟,秒

PHP函数gmstrftime()将秒数转换成天时分秒

c语言将秒数转换为时间格式(24小时制,00:00:00格式)

js将秒转换为时分秒

php 将秒数转换为时间(年天小时分秒)