範例
將以下程式拷貝回您的網頁
<SCRIPT LANGUAGE="JavaScript">
<!--
document.write("<center><font size=+1><b>")
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("星期四, 嗯,今天天氣不錯!")
document.write("</b></center></font>")
//-->
</SCRIPT>