小编典典

仅在javascript中将HH:MM:SS字符串转换为秒

javascript

我有与此类似的要求:将HH:MM:SS格式的时间仅转换为秒?

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


阅读 478

收藏
2020-05-01

共1个答案

小编典典

尝试这个:

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);
2020-05-01