How To Compare The Date Part Alone From A Date Time Value
I have two variables namely date1 = Mon Nov 25 2013 00:00:00 GMT+0530 (IST) date2 = Mon Nov 25 2013 14:13:55 GMT+0530 (IST) When I compare the two dates I get that date2 is great
Solution 1:
Try clearing the time using Date.setHours
:
dateObj.setHours(hoursValue[, minutesValue[, secondsValue[, msValue]]])
Example Code:
var today = newDate();
today.setHours(0, 0, 0, 0);
d = newDate(my_value);
d.setHours(0, 0, 0, 0);
if(d >= today){
alert(d is greater than or equal to current date);
}
Solution 2:
The best way would be to modify the accepted answer's if
statement as follows
if(d.setHours(0,0,0,0) >= today.setHours(0,0,0,0))
In this way, you can easily check for equality as well because the return type for setHours()
is integer.
Solution 3:
Try:
var today = newDate(); //Mon Nov 25 2013 14:13:55 GMT+0530 (IST) var d = newDate(my_value); //Mon Nov 25 2013 00:00:00 GMT+0530 (IST) var todayDateOnly = newDate(today.getFullYear(),today.getMonth(),today.getDate()); //This will write a Date with time set to 00:00:00 so you kind of have date onlyvar dDateOnly = newDate(d.getFullYear(),d.getMonth(),d.getDate());
if(dDateOnly>=todayDateOnly){
alert(d is greater than or equal to current date);
}
Solution 4:
varStartDate = $("#StartDate").val();
varEndDate = $("#EndDate").val();
if ((( EndDate - StartDate)/ (86400000*7))<0)
{
alert("Start Date Must Be Earlier Than End Date"); $("#StartDate").focus();
error = true;
returnfalse;
}
Post a Comment for "How To Compare The Date Part Alone From A Date Time Value"