아래 소스는 내 컴퓨터의 상태바의 시간을 표시하는 거 같습니다.
실시간은 아니구요. 열분이 고쳐서 쓰세요.

소 스 :
<script language="JavaScript">
<!--
document.write("<center>");
   var today = new Date()
document.write("<font style='color:#ff0000;font-size:9pt'> 지금 시간은 </FONT> ");
   dayStr = today.toLocaleString();
document.write(dayStr);
document.write("<p>");
   BigDay = new Date("june  21, 2001")
   msPerDay = 24 * 60 * 60 * 1000 ;
   timeLeft = (today.getTime() - BigDay.getTime());
   e_daysLeft = timeLeft / msPerDay;
   daysLeft = Math.floor(e_daysLeft);
   e_hrsLeft = (e_daysLeft - daysLeft)*24;
   hrsLeft = Math.floor(e_hrsLeft);
   minsLeft = Math.floor((e_hrsLeft - hrsLeft)*60);
document.write("<center><font style='color:#ff0000;font-size:9pt'> Tagpia가 태어난지 </FONT>" + daysLeft + " <FONT style='color:#191970;font-size:9pt'> 일 </FONT>" + hrsLeft +" <FONT style='color:#191970;font-size:9pt'> 시간 </FONT>" + minsLeft + "<FONT style='color:#ff0000;font-size:9pt'> 분이 되어뚬다~~~^^ </FONT><br>");
// -->
</script>
Posted by 알 수 없는 사용자
,