js将秒转化为时分秒
Posted Sameen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js将秒转化为时分秒相关的知识,希望对你有一定的参考价值。
formatSeconds(value) { let result = parseInt(value) let h = Math.floor(result / 3600) < 10 ? ‘0‘ + Math.floor(result / 3600) : Math.floor(result / 3600); let m = Math.floor((result / 60 % 60)) < 10 ? ‘0‘ + Math.floor((result / 60 % 60)) : Math.floor((result / 60 % 60)); let s = Math.floor((result % 60)) < 10 ? ‘0‘ + Math.floor((result % 60)) : Math.floor((result % 60)); let res = ‘‘; if(h !== ‘00‘) res += `${h}h`; if(m !== ‘00‘) res += `${m}min`; res += `${s}s`; return res; }
90s => 1min30s
以上是关于js将秒转化为时分秒的主要内容,如果未能解决你的问题,请参考以下文章