zoukankan      html  css  js  c++  java
  • js 秒数格式化

    	function formatSeconds(value) {
    		var theTime = parseInt(value);// 秒
    		var theTime1 = 0;// 分
    		var theTime2 = 0;// 小时
    		if (theTime > 60) {
    			theTime1 = parseInt(theTime / 60);
    			theTime = parseInt(theTime % 60);
    			if (theTime1 > 60) {
    				theTime2 = parseInt(theTime1 / 60);
    				theTime1 = parseInt(theTime1 % 60);
    			}
    		}
    
    		var result = "" + parseInt(theTime);//秒
    		if (10 > theTime > 0) {
    			result = "0" + parseInt(theTime);//秒
    		} else {
    			result = "" + parseInt(theTime);//秒
    		}
    
    		if (10 > theTime1 > 0) {
    			result = "0" + parseInt(theTime1) + ":" + result;//分,不足两位数,首位补充0,
    		} else {
    			result = "" + parseInt(theTime1) + ":" + result;//分
    		}
    		if (theTime2 > 0) {
    			result = "" + parseInt(theTime2) + ":" + result;//时
    		}
    		return result;
    	}
    

      

  • 相关阅读:
    网站
    世上本无事,庸人自扰之
    mac系招聘BBS
    新浪微博语录帝摘录
    dwz jui
    cheap vps
    facebook的开发标准
    rails的一些插件
    租房宝
    在Z10上用3G
  • 原文地址:https://www.cnblogs.com/scode2/p/10657667.html
Copyright © 2011-2022 走看看