jQuery从当前日期的秒开始计算新日期

时间:2015-07-30 16:53:26

标签: javascript jquery date time

当前日期为2015-07-30 06:0041786秒已过。我如何以当前日期格式获取新的日期和时间?

    var timeString = "2015-07-30 06:00";
                // start time
                var startTime = new Date(timeString);
                // add duration to the start time
var duration = 41786;
                startTime.setSeconds(startTime.getSeconds() + duration);

当我提醒startTime时,我没有在秒数过后获得新的约会。 我该如何解决?

1 个答案:

答案 0 :(得分:0)

您需要使用getTime()

startTime.setTime(startTime.getTime() + (41786 * 1000))