如何用 JavaScript 比较两个日期?
要使用 JavaScript 比较两个日期,请创建两个日期对象并获取最近的日期。您可以尝试运行以下代码来比较两个日期。
示例
<!DOCTYPE html>输出结果<html>
<body>
<script>
var date1, date2;
date1 = new Date();
document.write(date1);
date2 = new Date( "Dec 15, 2014 21:20:15" );
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>
Sat Dec 15 2018 11:08:06 GMT+0530 (India Standard Time)Mon Dec 15 2014 21:20:15 GMT+0530 (India Standard Time)
Date1 is the recent date.
以上是 如何用 JavaScript 比较两个日期? 的全部内容, 来源链接: utcz.com/z/327592.html