I'm creating an application which lets you define events with a time frame. I want to automatically fill in the end date when the user selects or changes the start date. I can't quite figure out, however, how to get the difference between the two times, and then how to create a new end Date using that difference.
|
2
|
|
|
|
|
|
In JavaScript, dates can be transformed to the number of milliseconds since the epoc by calling the So to get the difference, just subtract the two dates. To create a new date based on the difference, just pass the number of milliseconds in the constructor.
This should just work EDIT: Fixed bug pointed by @bdukes |
|||
|
|
|
|
If you use Date objects and then use the getTime() function for both dates it will give you their respective times since Jan 1, 1970 in a number value. You can then get the difference between these numbers. If that doesn't help you out, check out the complete documentation: http://www.w3schools.com/jsref/jsref_obj_date.asp |
||
|
|
|
|
If you don't care about the time component, you can use .getDate() and .setDate() to just set the date part. So to set your end date to 2 weeks after your start date, do something like this:
To return the difference (in days) between two dates, do this:
Finally, let's modify the first function so it can take the value returned by 2nd as a parameter:
|
||
|
|
|
|
Thanks @Vincent Robert, I ended up using your basic example, though it's actually
|
|||
|
|
|
|
quite confusing.. but still helpful.. thanx... |
||
|
