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将秒转化为时分秒的主要内容,如果未能解决你的问题,请参考以下文章

js 将秒数转换为时分秒的格式

将秒数转换为时分秒的形式java形式

php 将秒数转换为时间(年天小时分秒)

js之封装(秒数)转化为时分秒倒计时组件 vue版本

怎么将秒数转换为时间

PHP函数gmstrftime()将秒数转换成天时分秒