当前日期为2015-07-30 06:00
且41786
秒已过。我如何以当前日期格式获取新的日期和时间?
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
时,我没有在秒数过后获得新的约会。
我该如何解决?
答案 0 :(得分:0)
您需要使用getTime()
:
startTime.setTime(startTime.getTime() + (41786 * 1000))