仅在javascript中将HH:MM:SS字符串转换为秒
我有与此类似的要求:将HH:MM:SS格式的时间仅转换为秒?
但在javascript中。我已经看到了许多将秒转换为不同格式的示例,但没有将HH:MM:SS转换为秒的示例。任何帮助,将不胜感激。
回答:
尝试这个:
var hms = '02:04:33'; // your input stringvar 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字符串转换为秒 的全部内容, 来源链接: utcz.com/qa/397790.html