首页 > Web开发 > 详细

js秒数转换为时分秒

时间:2020-03-09 17:49:15      阅读:152      评论:0      收藏:0      [点我收藏+]
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(result < 10){
    	result = ‘0‘ + result;
    }
    if (theTime1 > 0) {
        result = "" + parseInt(theTime1) + ":" + result;
        if(theTime1 < 10){
        	result = ‘0‘ + result;
        }
    }else{
    	result = ‘00:‘ + result;
    }
    if (theTime2 > 0) {
        result = "" + parseInt(theTime2) + ":" + result;
        if(theTime2 < 10){
        	result = ‘0‘ + result;
        }
    }else{
    	result = ‘00:‘ + result;
    }
    return result;
}

  

js秒数转换为时分秒

原文:https://www.cnblogs.com/xiaomingliu/p/12449571.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!