博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JS将秒转换为 天-时-分-秒
阅读量:5927 次
发布时间:2019-06-19

本文共 1498 字,大约阅读时间需要 4 分钟。

记录一下,备忘..

function SecondToDate(msd) {            var time =msd            if (null != time && "" != time) {                if (time > 60 && time < 60 * 60) {                    time = parseInt(time / 60.0) + "分钟" + parseInt((parseFloat(time / 60.0) -                        parseInt(time / 60.0)) * 60) + "秒";                }                else if (time >= 60 * 60 && time < 60 * 60 * 24) {                    time = parseInt(time / 3600.0) + "小时" + parseInt((parseFloat(time / 3600.0) -                        parseInt(time / 3600.0)) * 60) + "分钟" +                        parseInt((parseFloat((parseFloat(time / 3600.0) - parseInt(time / 3600.0)) * 60) -                        parseInt((parseFloat(time / 3600.0) - parseInt(time / 3600.0)) * 60)) * 60) + "秒";                } else if (time >= 60 * 60 * 24) {                    time = parseInt(time / 3600.0/24) + "天" +parseInt((parseFloat(time / 3600.0/24)-                        parseInt(time / 3600.0/24))*24) + "小时" + parseInt((parseFloat(time / 3600.0) -                        parseInt(time / 3600.0)) * 60) + "分钟" +                        parseInt((parseFloat((parseFloat(time / 3600.0) - parseInt(time / 3600.0)) * 60) -                        parseInt((parseFloat(time / 3600.0) - parseInt(time / 3600.0)) * 60)) * 60) + "秒";                }                else {                    time = parseInt(time) + "秒";                }            }            return time;        }

  

转载于:https://www.cnblogs.com/GuZhenYin/p/4688292.html

你可能感兴趣的文章
Java环境变量配置
查看>>
模块"XX.dll"已加载,但对DllRegisterServer的调用失败
查看>>
linux centos7 root密码重置
查看>>
注意指针修饰符的准确含义
查看>>
OpenFileDialog的简单使用
查看>>
环形队列
查看>>
成熟sql 分页存储过程(UP_General_SelectByWhere)
查看>>
设置状态栏和标题栏的样式
查看>>
C++中的对象数组
查看>>
使用gulp-connect实现web服务器
查看>>
Zabbix RCE with API JSON-RPC
查看>>
适配器模式
查看>>
杭电Problem 1872 稳定排序
查看>>
js时间戳转成日期格式
查看>>
SRM 440(1-250pt, 1-500pt)
查看>>
位(bit)与字节(byte)
查看>>
音乐分类
查看>>
web第6次作业position
查看>>
详述 IntelliJ IDEA 插件的安装及使用方法
查看>>
Web应用架构-Full-text Search Service
查看>>