這個效果會在每日顯示不同的訊息
星期一,要開始工作囉!
請將以下程式複製至 <body> 與 </body> 之間
<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>
將 document.write(" ") 中的文字改成您想顯示的文字