1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<html> <head> <title>時間別メッセージ</title> </head> <body bgcolor="#ffffff">
<font color="#0000ff"> <script language="JavaScript"> <!-- // 現在時刻に合わせて文字を変える h = (new Date()).getHours(); if((h >= 0) && (h < 6)) document.write("眠くないですか? 00時〜06時未満のメッセージ"); if((h >= 6) && (h < 12)) document.write("おはようございます。 06時〜12時未満のメッセージ"); if((h >= 12) && (h < 18)) document.write("こんにちは。 12時〜18時未満のメッセージ"); if((h >= 18) && (h < 24)) document.write("こんばんは。 18時〜24時未満のメッセージ"); //--> </script>
</font> </body> </html>
|