1. 程式人生 > >js轉換成時分秒,和日時分秒的格式

js轉換成時分秒,和日時分秒的格式

js將秒數換算成時分秒

function formatSeconds(value) {     var theTime = parseInt(value);// 秒     var theTime1 = 0;// 分     var theTime2 = 0;// 小時     if(theTime > 60) {         theTime1 = parseInt(theTime/60);         theTime = parseInt(theTime%60);             if(theTime1 > 60) {             theTime2 = parseInt(theTime1/60);             theTime1 = parseInt(theTime1%60);             }     }         var result = ""+parseInt(theTime)+"秒";         if(theTime1 > 0) {         result = ""+parseInt(theTime1)+"分"+result;         }         if(theTime2 > 0) {         result = ""+parseInt(theTime2)+"小時"+result;         }     return result; }

js將秒數換算成日時分秒

function timeStamp( second_time ){  
 
var time = parseInt(second_time) + "秒";  
if( parseInt(second_time )> 60){  
 
   var second = parseInt(second_time) % 60;  
   var min = parseInt(second_time / 60);  
   time = min + "分" + second + "秒";  
     
   if( min > 60 ){  
       min = parseInt(second_time / 60) % 60;  
       var hour = parseInt( parseInt(second_time / 60) /60 );  
       time = hour + "小時" + min + "分" + second + "秒";  
 
       if( hour > 24 ){  
           hour = parseInt( parseInt(second_time / 60) /60 ) % 24;  
           var day = parseInt( parseInt( parseInt(second_time / 60) /60 ) / 24 );  
           time = day + "天" + hour + "小時" + min + "分" + second + "秒";  
       }  
   }  
     
 
}  
 
return time;          
}