📌  相关文章
📜  将秒转换为小时分钟秒javascript代码示例

📅  最后修改于: 2022-03-11 15:03:29.489000             🧑  作者: Mango

代码示例5
function convertSeconds(seconds) {
  var convert = function(x) { return (x < 10) ? "0"+x : x; }
  return convert(parseInt(seconds / (60*60))) + ":" +
         convert(parseInt(seconds / 60 % 60)) + ":" +
         convert(seconds % 60)
}