As the title states, using Javascript, how can I valid two given dates to ensure that they are a valid range? For example, a valid range could be ensuring that the dates are at least one week apart.
|
|
|
|
|
|
|
There is a date object in js that can take a string and then parse it and give you methods to interrogate this king of thing. you can find the docs at w3schools, javascript:date |
||
|
|
|
|
So if i understand currenctly, you need to look if one date is bigger than the other.
You then need to parse the strings you are getting from the UI, with Date.parse, like this:
Does that help? |
||
|
|
|
|
This is actually a problem that I have seen come up before a lot in my works and the following bit of code is my answer to the problem.
Now a couple things to note about this code, the Date.prase function should work for most input types, but has been known to have issues with some formats such as "YYYY MM DD" so you should test that before using it. However, I seem to recall that most browsers will interpret the date string given to Date.parse based upon the computers region settings. Also, the multiplier for 86400000 should be whatever the range of days you are looking for is. So if you are looking for dates that are at least one week apart then it should be seven. |
|||
|
|
|
|
There are a variety of formats you can pass to the Date() constructor to construct a date. You can also construct a new date with the current time:
and set various properties on it:
See http://www.javascriptkit.com/jsref/date.shtml or Google for more details. |
||
|
|
|
|
There is a little more to it than what Rob mentioned, at least for my definition of valid date. JavaScript converts dates so 2/31/2008 becomes 3/3/2008. The easy way to validate that is to compare the day, month and year that you get back from the data object with the day, month and year you pass to the constructor. /Allan |
||
|
