zoukankan      html  css  js  c++  java
  • js秒数转换时分秒方法

    今天写一个东西的时候 发现给出的是秒数。实在找不到直接的工具去转换。

    就去网上找了个转换方法(有现成的就不写了,以后再简化下代码)。 

     function formatSeconds(value) {
                var theTime = parseInt(value);//
                var theTime1 = 0;//
                var theTime2 = 0;// 小时
                // alert(theTime);
                if(theTime > 60) {
                    theTime1 = parseInt(theTime/60);
                    theTime = parseInt(theTime%60);
                    // alert(theTime1+"-"+theTime);
                    if(theTime1 > 60) {
                        theTime2 = parseInt(theTime1/60);
                        theTime1 = parseInt(theTime1%60);
                    }
                }
                var result = ""+parseInt(theTime)+"秒";
                if(theTime1 > 0) {
                    result = ""+parseInt(theTime1)+"分"+result;
                }
                if(theTime2 > 0) {
                    result = ""+parseInt(theTime2)+"小时"+result;
                }
                return result;
            }
    Now or nerver .
  • 相关阅读:
    iOS中过滤html文档中的标签
    十六进制函数转换UIColor对象
    vue使用echarts
    vue打包部署
    charels代理跨域访问接口
    vue 使用highcharts
    vue配置跨域
    命令行
    安装nvm
    vsCode个人设置
  • 原文地址:https://www.cnblogs.com/iyueyao/p/3302124.html
Copyright © 2011-2022 走看看