我希望用户在本月的第一天被定向到 bar.html,在本月的第二个被引导到 gjb.html,在每个月的第三个被引导到 guerr.html,在其他日期被引导到 error.html。
我究竟做错了什么?无论用户计算机上的日期如何,以下仅加载 bar.html。
<html>
<script type="text/javascript">
currentTime = new Date();
if (currentTime.getDate() = 1)
window.location = "bar.html";
else if (currentTime.getDate() = 2))
window.location = "gjb.html";
else if (currentTime.getDate() = 3))
window.location = "guerr.html";
else window.location = "error.html";
</script>
</html>
我对这一切都很陌生,所以像你对一个白痴一样解释它。