javascript 秒数转时分秒格式

前端之家收集整理的这篇文章主要介绍了javascript 秒数转时分秒格式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
                                        <pre><code>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;

}

猜你在找的JavaScript相关文章