貴方がここに来た時刻は です。


以下の文章を<BODY>〜</BODY>内に入れて下さい。



<center> <p><font size="4"color="#00F0FF">貴方がここに来た時刻は <font size="5"color="#FFFF99"> <SCRIPT LANGUAGE="JavaScript"> <!---日付・時間表示 now = new Date(); year = now.getYear(); if(year < 2000) { year = year + 1900; } document.write(year,"年"); document.write(now.getMonth()+1,"月",now.getDate(),"日"); document.write(now.getHours(),"時",now.getMinutes(),"分"); document.write(now.getSeconds(),"秒"); //end---> </SCRIPT> </font>です。</font> </center>

‘時刻表示’はJAVA SCRIPTの基本です。は文字色や文字サイズや文章ははご自分で好きなように変更して下さい。また曜日も表示させたい時は

<center> <p><font size="4"color="#00F0FF">貴方がここに来た時刻は <font size="5"color="#FFFF99"> <SCRIPT LANGUAGE="JavaScript"> <!---+曜日 var now,y,ya; now = new Date(); ya = new Array("日","月","火","水","木","金","土"); y = now.getDay(); year = now.getYear(); if(year < 2000) { year = year + 1900; } document.write(year,"年"); document.write(now.getMonth()+1,"月",now.getDate(),"日"); document.write("(" + ya[y] + ")"); document.write(now.getHours(),"時",now.getMinutes(),"分"); document.write(now.getSeconds(),"秒"); //end---> </SCRIPT> </font>です。</font> </center>

として下さい。

JAVA SCRIPTに戻る

ホームへ戻る