本文主要是介绍js秒转时分秒,小于十补零,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
js秒转时分秒,小于十补零
var s = 23886; //需要转的秒数
var m;setInterval(function(){m = secondToDate(s)console.log(m)s--;
},1000)// 输出03:05:59 时分秒
function secondToDate(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));return result = h + ":" + m + ":" + s;
}
输出:
最后为了方便大家的沟通与交流请加QQ群: 625787746
请进QQ群交流:【IT博客技术分享群①】:https://jq.qq.com/?_wv=1027&k=DceI0140
这篇关于js秒转时分秒,小于十补零的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!