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
3 Answers
Reset to default 5One 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
版权声明:本文标题:Check i Current Date is greater than other specified date javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743868217a2552977.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论