js时间秒级转换为xxh : xxm : xxs

2019-02-20  本文已影响0人  fronter
    /**
      * @method 秒转时分秒
      * @params 需要转换的时间( 秒级 )
      *@return xxh : xxm : xxs
     **/
    function secondToDate(result) {
        var h = Math.floor(result / 3600) < 10 ? '0'+Math.floor(result / 3600) : Math.floor(result / 3600);
        var m = Math.floor((result / 60 % 60)) < 10 ? '0' + Math.floor((result / 60 % 60)) : Math.floor((result / 60 % 60));
        var s = Math.floor((result % 60)) < 10 ? '0' + Math.floor((result % 60)) : Math.floor((result % 60));
        return result = h + "h : " + m + "m : " + s + "s";
    }
上一篇下一篇

猜你喜欢

热点阅读