【发布时间】:2016-09-20 06:25:19
【问题描述】:
我正在尝试将秒转换为 hh:mm:ss 格式。 我使用下面的代码将秒转换为小时,分钟。 但我不想做这一切。在 moment.js 中是否可以将秒转换为 HH:MM:SS 格式。而不是手动操作。
var x = 43000
var durationValue = moment.duration(x, 'milliseconds');
var hours = Math.floor(durationValue.asHours());
var mins = Math.floor(durationValue.asMinutes()) - hours * 60;
console.log("hours:" + hours + " mins:" + mins);
【问题讨论】:
标签: javascript jquery momentjs