Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 用 JavaScript 比较日期
我想从 2 个带有时间的日期中找出哪一个更大,该日期在 javascript 中采用以下格式
日期 1=2-11-2012 13:40:00 日期2=01-11-2012 10:40:00
希望你能学到一些东西...
Date
valueOf()
>
然后,您可能会想出类似...
var isLarger = new Date("2-11-2012 13:40:00") > new Date("01-11-2012 10:40:00");
var x=new Date(); x.setFullYear(2100,0,14); var y=new Date(); y.setFullYear(2100,0,20); if (x>y) { alert("Message1"); } else { alert("Message2"); }