<script language="JavaScript">
now = new Date()
if (now.getDay() == 5)
document.write("終於等到星期五啦!")
if (now.getDay() == 6)
document.write("星期六啦,希望您有個愉快的周末!")
if (now.getDay() == 0)
document.write("嘩!到了美好而神聖的星期日啦!")
if (now.getDay() == 1)
document.write("星期一,要開始工作囉!")
if (now.getDay() == 2)
document.write("星期二,星期一終於過去了!")
if (now.getDay() == 3)
document.write("星期三,小周末想去邊度玩呀!")
if (now.getDay() == 4)
document.write("星期四,聽日就係星期五啦!")
// --></script>
|