通过js把总秒数转换成时分秒

通过js把总秒数转换成时分秒

countdown(result){
				var h = Math.floor(result / 3600) < 10 ? '0'+Math.floor(result / 3600) : Math.floor(result / 3600);
				var m = Math.floor((result / 60 % 60)) < 10 ? '0' + Math.floor((result / 60 % 60)) : Math.floor((result / 60 % 60));
				var s = Math.floor((result % 60)) < 10 ? '0' + Math.floor((result % 60)) : Math.floor((result % 60));
				if(h==0){
					result = m + ":" + s;
				}else{
					result = h+':'+m + ":" + s
				}    
				this.jishi=result;
}

你可能感兴趣的:(JS)