我有类似的要求:Convert time in HH:MM:SS format to seconds only?

但在 javascript 中。我见过许多将秒转换为不同格式的示例,但没有将 HH:MM:SS 转换为秒。任何帮助,将不胜感激。

最佳答案

试试这个:

var hms = '02:04:33';   // your input string
var a = hms.split(':'); // split it at the colons

// minutes are worth 60 seconds. Hours are worth 60 minutes.
var seconds = (+a[0]) * 60 * 60 + (+a[1]) * 60 + (+a[2]);

console.log(seconds);

关于javascript - 转换 HH :MM:SS string to seconds only in javascript,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9640266/

10-13 01:29