每日問候語
控制碼內容:
一 將下面複製至 <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> <!------------ 插入控制碼區段結束 ------------>