gpt4 book ai didi

javascript - JS日期格式和日期比较

转载 作者:太空宇宙 更新时间:2023-11-04 15:31:32 26 4
gpt4 key购买 nike

我有一个这种格式的日期

 16-NOV-12 

来自 id = date 的输入框。

我如何检查这个日期是否在未来的过去?

最佳答案

<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"
type="text/javascript"></script>
<script src="http://www.datejs.com/build/date.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
var idstring = "16-NOV-12";
var time = Date.compare(Date.parse("16-NOV-2012"), Date.today());
var now = "in past";
if (time == 0) now = "today";
if (time > 0) now = "in future";
alert(idstring + " is " + now);
});
</script>
</head>
<body>
</body>
</html>

关于javascript - JS日期格式和日期比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13481353/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com