如何在Jquery中计算时间?

时间:2014-09-26 11:43:45

标签: jquery time

我有两个变量:

start = "14:00"
duration = "30" (minutes"

如何使用Jquery或Javascript计算时间?所以它看起来像14:00 + 30 = 14:30

2 个答案:

答案 0 :(得分:0)

我建议使用moment.js

http://momentjs.com/

它是等待日期操作的完美插件。

答案 1 :(得分:0)

您应该将所有值转换为秒,然后将它们设为HH:MM

start = "14:00" => 14*60*60 translates to seconds
duration = "30" = > 30*60 translates to seconds

var theDate = (new Date).clearTime().addSeconds(57600).toString('H:mm:ss');

:)

date.js