0

javascript 怎样格式化秒为HH-MM-SS 小时:分钟:秒 的格式?

helen created at6 years ago view count: 2376

设计倒计时的地方需要把倒计时秒转换为小时:分钟:秒 的格式, Javascript里面怎样格式化?

report
回复
0
function formatSeconds(seconds)
{
    var date = new Date(1970,0,1);
    date.setSeconds(seconds);
    return date.toTimeString().replace(/.*(\d{2}:\d{2}:\d{2}).*/, "$1");
}
6 years ago 回复