gpt4 book ai didi

javascript - 你能解释为什么这个javascript不正确吗?

转载 作者:行者123 更新时间:2023-11-30 07:34:57 25 4
gpt4 key购买 nike

如果过期日期已过,我希望此脚本返回警报,否则显示 OK。
没想到脚本会陷入 Else “Error” 语句。

谁能解释一下这是怎么回事?

<!DOCTYPE HTML>
<html>
<body>

<div id="test"></div>

<script>
var expirymonth = "3";
var expiryyear = "2017";

if (expirymonth != null != null && expiryyear != null)
{
var currentDate = Date();
var expiryDate = new Date(parseInt(expiryyear),parseInt(expirymonth - 1),1);
if (expiryDate < currentDate)
{
window.alert("Expiry Date must not be in the past.");
}
else if (expiryDate > currentDate)
{
window.alert("OK");
}
else
{
window.alert("Error");
}
}
</script>

</body>
</html>

最佳答案

Date() 返回一个字符串。您不能将它与日期进行比较。

替换

var currentDate = Date();

var currentDate = new Date();

(还修复了 Davin Tryon 在评论中指出的明显拼写错误)

关于javascript - 你能解释为什么这个javascript不正确吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37249562/

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