デジタル時計を表示する
1秒ごとに点滅する、デジタル時計です。
入力の出来ないテキストボックスを使用して表示しています。
/**********************************************************************************************/ //時計 var Disp_Flg; function time() { var now = new Date() yea = now.getYear(); mon = now.getMonth()+1; day = now.getDate() hou = now.getHours(); min = now.getMinutes(); sec = now.getSeconds() if (hou < 10){ hou = "0" + hou; } if (min < 10){ min = "0" + min; } if(yea <= 2000){yea=yea+1900} document.FORM1.clock1.value = + yea +"年"+ mon +"月"+ day +"日 "; if (Disp_Flg == true){ Disp_Flg = false; document.FORM1.clock1.value += hou +":"+ min ; }else{ Disp_Flg = true; document.FORM1.clock1.value += hou +" "+ min ; } setTimeout('time()',1000) } /**********************************************************************************************/ テキストボックス例: <INPUT type="text" size="18" name="clock1" READONLY style="font-family:'MS ゴシック', sans-serif; color:#990000 ;font-size20: ; text-align:right; background-color:transparent ; border-style:solid; border-width:0px"> /**********************************************************************************************/