网站更新内容:请访问: https://bigdata.ministep.cn/

seconds to minutes

How to convert seconds to minutes and hours in javascript - Stack Overflow

   secondTransferTime: function(t) {
        return t > 3600 ? [ parseInt(t / 60 / 60), parseInt(t / 60 % 60), parseInt(t % 60) ].join(":").replace(/\b(\d)\b/g, "0$1") : [ parseInt(t / 60 % 60), parseInt(t % 60) ].join(":").replace(/\b(\d)\b/g, "0$1");
    },
posted @ 2021-11-21 22:11  ministep88  阅读(25)  评论(0编辑  收藏  举报
网站更新内容:请访问:https://bigdata.ministep.cn/