admin管理员组

文章数量:1352175

i want to check if today date is greater than specified date say 26th march 2017 note only one date is specified not both i researched on stack overflow the questions answer check between two specified date . i want to check

if(current date > specified date) {
// do this 
}

i tried converting into day but it was not flexible . I dint understand well

i want to check if today date is greater than specified date say 26th march 2017 note only one date is specified not both i researched on stack overflow the questions answer check between two specified date . i want to check

if(current date > specified date) {
// do this 
}

i tried converting into day but it was not flexible . I dint understand well

Share Improve this question asked Mar 20, 2017 at 6:06 Rishabh AhujaRishabh Ahuja 131 gold badge1 silver badge3 bronze badges 4
  • 1 Possible duplicated stackoverflow./q/492994/6568620 – Mohamed Abbas Commented Mar 20, 2017 at 6:07
  • i wrote in question other answers pare two specified dates not current date with other specifed date think before u answer – Rishabh Ahuja Commented Mar 20, 2017 at 6:10
  • @RishabhAhuja I guess you should read answer more carefully new Date(); will give you current date The link by Mohamed Abbas is sufficient to close your answer – Vinod Louis Commented Mar 20, 2017 at 6:14
  • 5 Possible duplicate of Compare two dates with JavaScript – Vinod Louis Commented Mar 20, 2017 at 6:15
Add a ment  | 

3 Answers 3

Reset to default 5

One of the solution i would suggest is moment.js library.

It provides Query functions like isBefore(), isSame() and isAfter().

var today = moment('2010-10-20'),
     specifiedDate = moment('2010-10-21');
if(today.isBefore(specifiedDate)){
  console.log("Past Date");
}else{
  console.log("Future Date");
};
<script src="https://cdnjs.cloudflare./ajax/libs/moment.js/2.18.0/moment.min.js"></script>

var specific_date = new Date('2017-03-26');
var current_date = new Date();
if(current_date.getTime() > specific_date.getTime())
{
    console.log('current_date date is grater than specific_date')
}
else
{
    console.log('current_date date is lower than specific_date')
}

Use Moment.js to handle dates,

ex:

moment().isAfter('2014-03-26T01:14:00Z') // true
moment().isAfter('2017-03-26T01:14:00Z') // false

本文标签: Check i Current Date is greater than other specified date javascriptStack Overflow