zoukankan      html  css  js  c++  java
  • JS将秒换成时分秒实现代码 [mark]

    将秒换成时分秒的方法有很多,在本文将为大家介绍下,使用js的具体的实现思路,有需要的朋友可以参考下,希望对大家有所帮助

    http://www.jb51.net/article/41098.htm

    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; 
    } 
  • 相关阅读:
    Excel 之查找与替换
    重拾Excel之为什么
    taobao
    祝我生日快乐
    啊哈哈哈哈!自由啦
    我是不是得了抑郁症?
    Be quiet
    tcpdump tutorial
    Java Thread 多线程同步、锁、通信
    java 堆、栈、常量池等
  • 原文地址:https://www.cnblogs.com/jshare/p/7776630.html
Copyright © 2011-2022 走看看