ユーザーを月の最初にbar.html、月の2番目にgjb.html、月の3番目に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>
私はこれらすべてに真新しいので、あなたが完全な馬鹿にそうするようにそれを説明してください。