使用javascript将HH:MM:SS转换为分钟

时间:2015-10-01 10:49:38

标签: javascript string time

如何使用javascript将HH:MM:SS转换为分钟?

2 个答案:

答案 0 :(得分:10)

使用split和multiply每60个忽略秒。

this answer为基础:

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

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

console.log(minutes);

使用split和multiply每60使用秒作为十进制(因此不完全准确)

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

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

console.log(minutes + "," + ((+a[2]) / 60));

答案 1 :(得分:-4)

了解时间功能& JS中的格式必须阅读manual

var date = new Date();
console.log(date.getMinutes());