本文介绍了javascript添加一分钟到时间对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个类似于以下javascript格式的日期字符串。
我想将其转换为日期对象并添加一分钟。
I have a date string that looks like the following javascript format.I want to convert this to a date object and add one minute.
timeObject = "Mon Nov 07 2011 06:41:48 GMT-0500 (Eastern Standard Time)";
timeObject.setSeconds(timeObject.getSeconds() + 60);
======解决方案==========
====== SOLUTION ==========
没关系。我明白了......
never mind. I got it...
var time = $('#myDiv').val(); // = "Mon Nov 07 2011 06:41:48 GMT-0500 (Eastern Standard Time)";
var timeObject = new Date(time);
alert(timeObject);
timeObject.setSeconds(timeObject.getSeconds() + 60);
alert(timeObject);
推荐答案
正确的方法是:
timeObject.setTime(timeObject.getTime() + 1000 * 60);
这篇关于javascript添加一分钟到时间对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!