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.
|
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 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
|
||||
|
|
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 |
|||||
|
|
Depending on your needs, this function will calculate the difference between the 2 days, and return a result in days decimal.
|
|||||||||||
|
|
JavaScript perfectly supports date difference out of the box
Now some pitfalls. Try this:
So if you have risk of adding a number and Date, convert Date to
My fist example demonstrates the power of Date object but it actually appears to be a time bomb |
||||
|
|
|
||||
|
|
|
I would like to point out an error that i encountered due to date format from a date picker. Using a format like dd/mm/yyyy wont give the correct date. Use the following
Here we need to split the inputed dates to convert them into standard format
Date format(Fullyear,month,date) . This will
Calculate difference between the two dates, and convert to days
_Diff gives the diffrence between the two dates. |
|||||
|
|
this code fills the duration of study years when you input the start date and end date(qualify accured date) of study and check if the duration less than a year if yes the alert a message take in mind there are three input elements the first txtFromQualifDate and second txtQualifDate and third txtStudyYears it will show result of number of years with fraction
|
|||||||
|
