Can someone suggest a way to compare the values of two dates greater than, less than, and not in the past using javascript? The values will be coming from text boxes.
|
The Date object will do what you want - construct one for each date, then just compare them using the usual operators. I suggest you use drop-downs or some similar constrained form of date entry rather than text boxes, though, lest you find yourself in input validation hell. |
|||||||||||||||||
|
|
The easiest way to compare dates in javascript is to first convert it to a Date object and then compare these date-objects. Below you find an object with three functions:
.
Updated 26 Februari 2011 with documentation in the code (the code is unaltered). |
||||
|
By far the easiest method is to subtract one date from the other and compare the result.
|
|||
|
|
what format? If you construct a Javascript Date object, you can just subtract them to get a milliseconds difference (edit: or just compare them) :
|
|||
|
|
|||
|
you use this code,
And also check this link http://www.w3schools.com/js/js_obj_date.asp |
|||||||
|
|
Two JavaScript Date objects can be compared using
But you cannot use
However, the values contained within JavaScript Dates can be compared for equality:
|
|||
|
|
|
In order to create dates from free text in Javascript you need to parse it into the Date() object. You could use Date.parse() which takes free text tries to convert it into a new date but if you have control over the page I would recommend using HTML select boxes instead or a date picker such as the YUI calendar control or the jQuery UI Datepicker. Once you have a date as other people have pointed out you can use simple arithmetic to subtract the dates and convert it back into a number of days by dividing the number (in seconds) by the number of seconds in a day (60*60*24 = 86400). |
|||
|
|
|
||||
|
|
|
Say you got the date objects A and B, get their EPOC time value, then subtract to get the difference in milliseconds.
That's all. |
|||
|
|
|
An Improved version of the code posted by "some"
usage:
|
||||
|
|
|
If following is your date format, you can use this code:
It will check whether |
|||||||||
|
|
Compare
Hope this helps! |
|||
|
|
Use this code to compare the date using javascript. Thanks D.Jeeva |
|||
|
|
|
I usually store When I need to compare, I simply compare among those timestamps or convert it to Date Object and then compare with Note that == or === does not work properly unless your variables are references of the same Date Object. Convert those Date objects to timestamp(number) first and then compare equality of them. Date to Timestamp
Timestamp to Date
|
|||
|
|
|
||||
|
|
|
|||
|
|
|
Dates comparison:
|
||||
|
|
|
function ( /* Date */date2) {
} |
||||
|
|
