美文网首页
js时间秒级转换为xxh : xxm : xxs

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

作者: fronter | 来源:发表于2019-02-20 19:53 被阅读0次
        /**
          * @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";
        }
    

    相关文章

      网友评论

          本文标题:js时间秒级转换为xxh : xxm : xxs

          本文链接:https://www.haomeiwen.com/subject/ojrqeqtx.html