摘要: function formateTime(t) { var h,m,s; t=t*1; if(isNaN(t)){ return 0; } if(t>3599){ h=Math.floor(t/3600); h=(((h+'').length<2?('0'+h):h)) t=t%3600; h=h+ 阅读全文
posted @ 2017-06-03 11:43 hahaha222 阅读(212) 评论(0) 推荐(0)