如何对比两个 JavaScript Date 对象?
要使用 JavaScript 比较两个日期对象,创建两个日期对象并获取最新日期来与自定义日期进行比较。
示例
你可以尝试运行以下代码来比较两个日期 −
<!DOCTYPE html> <html> <body> <script> var date1, date2; date1 = new Date(); document.write(date1); date2 = new Date( "Dec 10, 2015 20:15:10" ); document.write("<br>"+date2); if (date1 > date2) { document.write("<br>Date1 is the recent date."); } else { document.write("<br>Date 2 is the recent date."); } </script> </body> </html>
输出
Mon May 28 2018 09:48:49 GMT+0530 (India Standard Time) Thu Dec 10 2015 20:15:10 GMT+0530 (India Standard Time) Date1 is the recent date
广告